:root {
            --primary: hsl(66, 60%, 33%);
            --secondary: hsl(66, 60%, 18%);
            --accent: hsl(66, 60%, 58%);
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6, .navbar-brand {
            font-family: 'Quicksand', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--secondary);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-toggler {
            border-color: var(--primary);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='hsl(66, 60%25, 33%25)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  #about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Libre Baskerville', serif;
    color: #333;
  }

  #about .section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: hsl(66, 60%, 18%);
    margin-bottom: 1.5rem;
    text-align: center;
  }

  #about .section-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    color: hsl(66, 60%, 33%);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
  }

  #about .about-content {
    margin-bottom: 4rem;
  }

  #about .about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
  }

  #about .about-text p {
    margin-bottom: 1.3rem;
  }

  #about .about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
  }

  #about .about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }

  #about .about-image:hover img {
    transform: scale(1.05);
  }

  #about .values-section {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 3rem;
  }

  #about .values-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: hsl(66, 60%, 18%);
    margin-bottom: 2rem;
    text-align: center;
  }

  #about .value-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid hsl(66, 60%, 58%);
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  #about .value-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
  }

  #about .value-item h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: hsl(66, 60%, 33%);
    margin-bottom: 0.8rem;
  }

  #about .value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
  }

  #about .mission-box {
    background: linear-gradient(135deg, hsl(66, 60%, 33%) 0%, hsl(66, 60%, 18%) 100%);
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  #about .mission-box h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
  }

  #about .mission-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    color: #f8f9fa;
  }

  @media (max-width: 768px) {
    #about {
      padding: 50px 0;
    }

    #about .section-title {
      font-size: 2rem;
    }

    #about .values-section {
      padding: 2rem 1.5rem;
    }

    #about .value-item {
      padding: 1.2rem;
    }

    #about .mission-box {
      padding: 2rem 1.5rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  #portfolio {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }

  #portfolio .section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: hsl(66, 60%, 18%);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
  }

  #portfolio .section-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

  #portfolio .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 3rem;
  }

  #portfolio .filter-btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border: 2px solid hsl(66, 60%, 33%);
    background: transparent;
    color: hsl(66, 60%, 33%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(66, 60%, 33%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  #portfolio .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 2rem;
  }

  #portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background: #fff;
    cursor: pointer;
  }

  #portfolio .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  }

  #portfolio .portfolio-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  #portfolio .portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
  }

  #portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  #portfolio .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
  }

  #portfolio .portfolio-content {
    padding: 25px;
  }

  #portfolio .portfolio-category {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: hsl(66, 60%, 58%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  #portfolio .portfolio-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  #portfolio .portfolio-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
  }

  #portfolio .portfolio-overlay .portfolio-title {
    color: #fff;
    margin-bottom: 10px;
  }

  #portfolio .portfolio-overlay .portfolio-description {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
  }

  #portfolio .view-details-btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    padding: 10px 24px;
    background: hsl(66, 60%, 58%);
    color: #222;
    border: none;
    border-radius: 25px;
    margin-top: 15px;
    display: inline-block;
    transition: all 0.3s ease;
  }

  #portfolio .view-details-btn:hover {
    background: hsl(66, 60%, 48%);
    transform: scale(1.05);
  }

  .modal-content {
    border-radius: 20px;
    border: none;
  }

  .modal-header {
    background: linear-gradient(135deg, hsl(66, 60%, 33%) 0%, hsl(66, 60%, 18%) 100%);
    color: #fff;
    border-radius: 20px 20px 0 0;
    padding: 25px 30px;
  }

  .modal-header .modal-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
  }

  .modal-header .btn-close {
    filter: brightness(0) invert(1);
  }

  .modal-body {
    padding: 35px;
    font-family: 'Libre Baskerville', serif;
    color: #333;
    line-height: 1.8;
  }

  .modal-body img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .modal-body h5 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(66, 60%, 18%);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
  }

  .modal-body .project-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
  }

  .modal-body .meta-item {
    font-family: 'Quicksand', sans-serif;
  }

  .modal-body .meta-label {
    font-weight: 700;
    color: hsl(66, 60%, 33%);
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
  }

  .modal-body .meta-value {
    color: #555;
    font-size: 1rem;
  }

  .modal-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .modal-body ul li {
    margin-bottom: 10px;
    color: #444;
  }

  @media (max-width: 768px) {
    #portfolio {
      padding: 60px 0;
    }

    #portfolio .section-title {
      font-size: 2.2rem;
    }

    #portfolio .portfolio-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    #portfolio .filter-buttons {
      gap: 10px;
    }

    #portfolio .filter-btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }

    .modal-body {
      padding: 25px 20px;
    }

    .modal-body .project-meta {
      gap: 20px;
    }
  }

  @media (max-width: 576px) {
    #portfolio .section-title {
      font-size: 1.8rem;
    }

    #portfolio .portfolio-title {
      font-size: 1.2rem;
    }

    .modal-header .modal-title {
      font-size: 1.4rem;
    }
  }

.advantages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  .advantages-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(66, 60%, 58%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

  .advantages-section .container {
    position: relative;
    z-index: 1;
  }

  .advantages-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .advantages-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(66, 60%, 18%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .advantages-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(66, 60%, 58%);
    border-radius: 2px;
  }

  .advantages-header p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

  .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(66, 60%, 33%), hsl(66, 60%, 58%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(66, 60%, 58%);
  }

  .advantage-card:hover::before {
    transform: scaleX(1);
  }

  .advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(66, 60%, 33%), hsl(66, 60%, 58%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  .advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
  }

  .advantage-icon i {
    font-size: 2.2rem;
    color: #ffffff;
  }

  .advantage-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(66, 60%, 18%);
    margin-bottom: 18px;
    text-align: center;
    transition: color 0.3s ease;
  }

  .advantage-card:hover h3 {
    color: hsl(66, 60%, 33%);
  }

  .advantage-card p {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
    margin: 0;
  }

  .advantages-row {
    margin-top: 50px;
  }

  @media (max-width: 991px) {
    .advantages-header h2 {
      font-size: 2.3rem;
    }

    .advantage-card {
      margin-bottom: 30px;
    }
  }

  @media (max-width: 767px) {
    .advantages-section {
      padding: 60px 0;
    }

    .advantages-header h2 {
      font-size: 2rem;
    }

    .advantages-header p {
      font-size: 1rem;
    }

    .advantage-icon {
      width: 70px;
      height: 70px;
    }

    .advantage-icon i {
      font-size: 2rem;
    }

    .advantage-card h3 {
      font-size: 1.3rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

#statistics {
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(66, 60%, 98%) 0%, hsl(66, 40%, 95%) 100%);
  position: relative;
  overflow: hidden;
}

#statistics::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(66, 60%, 58%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

#statistics::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(66, 60%, 33%);
  opacity: 0.03;
  border-radius: 50%;
  z-index: 0;
}

.statistics-container {
  position: relative;
  z-index: 1;
}

.statistics-header {
  text-align: center;
  margin-bottom: 60px;
}

.statistics-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: hsl(66, 60%, 18%);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.statistics-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: hsl(66, 60%, 58%);
  border-radius: 2px;
}

.statistics-header p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 30px auto 0;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, hsl(66, 60%, 58%) 0%, hsl(66, 60%, 33%) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-color: hsl(66, 60%, 58%);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, hsl(66, 60%, 33%) 0%, hsl(66, 60%, 18%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, hsl(66, 60%, 58%) 0%, hsl(66, 60%, 33%) 100%);
}

.stat-icon i {
  font-size: 32px;
  color: #ffffff;
}

.stat-number {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: hsl(66, 60%, 18%);
  margin-bottom: 10px;
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  font-weight: 400;
}

.stat-context {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.8rem;
  color: #888;
  margin-top: 8px;
  font-style: italic;
}

@media (max-width: 768px) {
  #statistics {
    padding: 60px 0;
  }

  .statistics-header h2 {
    font-size: 2rem;
  }

  .statistics-header p {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 35px 25px;
  }
}

footer {
  background: linear-gradient(135deg, hsl(66, 60%, 18%) 0%, hsl(66, 60%, 33%) 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  font-family: 'Libre Baskerville', serif;
  margin-top: 80px;
}

footer h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(66, 60%, 58%);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

footer p, footer li, footer a {
  font-size: 0.95rem;
  line-height: 1.7;
}

footer .company-description {
  color: #f8f9fa;
  margin-bottom: 25px;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: hsl(66, 60%, 58%);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer .contact-info i {
  color: hsl(66, 60%, 58%);
  margin-right: 10px;
  width: 20px;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 25px;
  text-align: center;
  color: #e0e0e0;
  font-size: 0.9rem;
}

footer .policy-links {
  margin-top: 15px;
}

footer .policy-links a {
  margin: 0 10px;
  font-size: 0.9rem;
  color: #e0e0e0;
}

footer .policy-links a:hover {
  color: hsl(66, 60%, 58%);
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 3px solid hsl(66, 60%, 33%);
}

#cookieNotice .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#cookieNotice h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(66, 60%, 18%);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

#cookieNotice p {
  font-family: 'Libre Baskerville', serif;
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

#cookieNotice .cookie-categories {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

#cookieNotice .cookie-category {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dee2e6;
}

#cookieNotice .cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#cookieNotice .cookie-category strong {
  color: hsl(66, 60%, 18%);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
}

#cookieNotice .cookie-category span {
  color: #666666;
  font-size: 0.85rem;
  display: block;
  margin-top: 5px;
}

#cookieNotice .cookie-category .badge {
  font-size: 0.75rem;
  padding: 4px 8px;
  margin-left: 8px;
}

#cookieNotice .btn-accept-all {
  background: hsl(66, 60%, 33%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-right: 10px;
}

#cookieNotice .btn-accept-all:hover {
  background: hsl(66, 60%, 28%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#cookieNotice .btn-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-right: 10px;
}

#cookieNotice .btn-reject:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

#cookieNotice .btn-manage {
  background: transparent;
  color: hsl(66, 60%, 33%);
  border: 2px solid hsl(66, 60%, 33%);
  padding: 10px 28px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

#cookieNotice .btn-manage:hover {
  background: hsl(66, 60%, 33%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-top: 25px;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    display: block;
    width: 100%;
    margin: 8px 0;
  }
}

.blog-page { padding: 4rem 0; }
.blog-page h1 { margin-bottom: 3rem; text-align: center; }
.blog-card { margin-bottom: 2rem; transition: transform 0.3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card .card-img-top { height: 200px; object-fit: cover; }
.blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Libre Baskerville, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(66, 60%, 33%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Quicksand, sans-serif; color: hsl(66, 60%, 18%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(66, 60%, 33%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(66, 60%, 18%); font-family: Quicksand, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(66, 60%, 18%); font-family: Quicksand, sans-serif; }
.blog-article a { color: hsl(66, 60%, 33%); }
.blog-article a:hover { color: hsl(66, 60%, 58%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(66, 60%, 33%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Libre Baskerville', serif;
    color: #333;
}

.contact-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(66, 60%, 18%);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-section .lead-text {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(66, 60%, 18%);
    margin-bottom: 1.5rem;
}

.form-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: hsl(66, 60%, 58%);
    box-shadow: 0 0 0 0.2rem rgba(159, 173, 75, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, hsl(66, 60%, 33%) 0%, hsl(66, 60%, 28%) 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, hsl(66, 60%, 28%) 0%, hsl(66, 60%, 23%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 98, 40, 0.3);
}

.contact-info h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(66, 60%, 18%);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid #e8e8e8;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, hsl(66, 60%, 58%) 0%, hsl(66, 60%, 48%) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.2rem;
}

.info-icon svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.info-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(66, 60%, 18%);
    margin-bottom: 0.4rem;
}

.info-content p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-content a {
    color: hsl(66, 60%, 33%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: hsl(66, 60%, 28%);
    text-decoration: underline;
}

.required-mark {
    color: #d9534f;
    margin-left: 2px;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-form-card, .contact-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-card h3, .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .btn-submit {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  :root {
    --primary-color: hsl(66, 60%, 33%);
    --secondary-color: hsl(66, 60%, 18%);
    --accent-color: hsl(66, 60%, 58%);
  }

  body {
    font-family: 'Libre Baskerville', serif;
    color: #2c3e50;
    line-height: 1.8;
  }

  .policy-content {
    max-width: 1000px;
    margin: 0 auto;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
  }

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
    color: var(--primary-color);
  }

  .policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
  }

  .policy-content h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }

  .policy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }

  .policy-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }

  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }

  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.8rem;
  }

  .info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .info-box h3 {
    color: white;
    margin-top: 0;
  }

  .info-box p {
    margin-bottom: 0.5rem;
  }

  .info-box a {
    color: white;
    border-bottom-color: white;
  }

  .info-box a:hover {
    opacity: 0.8;
  }

  .cookie-type-card {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .cookie-type-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
  }

  .cookie-type-card h3 {
    margin-top: 0;
    color: var(--secondary-color);
  }

  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }

  .highlight-text {
    background-color: rgba(166, 173, 89, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    color: var(--secondary-color);
  }

  @media (max-width: 768px) {
    .policy-content h1 {
      font-size: 2rem;
    }

    .policy-content h2 {
      font-size: 1.5rem;
    }

    .info-box {
      padding: 1.5rem;
    }
  }

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }

  .faq-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(66, 60%, 18%);
    margin-bottom: 1rem;
    text-align: center;
  }

  .faq-section .section-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }

  .faq-accordion .accordion-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }

  .faq-accordion .accordion-button {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: hsl(66, 60%, 18%);
    background-color: #ffffff;
    padding: 1.5rem 1.8rem;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(66, 60%, 33%);
    color: #ffffff;
    box-shadow: none;
  }

  .faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
  }

  .faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23495057'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
  }

  .faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }

  .faq-accordion .accordion-body {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    padding: 1.8rem;
    background-color: #ffffff;
  }

  .faq-accordion .accordion-body p {
    margin-bottom: 0.8rem;
  }

  .faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
  }

  .faq-accordion .accordion-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
  }

  .faq-accordion .accordion-body li {
    margin-bottom: 0.5rem;
  }

  .faq-cta {
    text-align: center;
    margin-top: 3.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, hsl(66, 60%, 33%) 0%, hsl(66, 60%, 18%) 100%);
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-cta h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
  }

  .faq-cta p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: #f8f9fa;
    margin-bottom: 1.5rem;
  }

  .faq-cta .btn-contact {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    background-color: hsl(66, 60%, 58%);
    color: hsl(66, 60%, 18%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .faq-cta .btn-contact:hover {
    background-color: #ffffff;
    color: hsl(66, 60%, 18%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  @media (max-width: 768px) {
    .faq-section {
      padding: 60px 0;
    }

    .faq-section h2 {
      font-size: 2rem;
    }

    .faq-section .section-subtitle {
      font-size: 1rem;
      margin-bottom: 2rem;
    }

    .faq-accordion .accordion-button {
      font-size: 1.05rem;
      padding: 1.2rem 1.3rem;
    }

    .faq-accordion .accordion-body {
      font-size: 0.95rem;
      padding: 1.3rem;
    }

    .faq-cta {
      padding: 2rem 1.5rem;
      margin-top: 2.5rem;
    }

    .faq-cta h3 {
      font-size: 1.5rem;
    }

    .faq-cta p {
      font-size: 1rem;
    }
  }

.newsletter-section {
  background: linear-gradient(135deg, hsl(66, 60%, 18%) 0%, hsl(66, 60%, 33%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(66, 60%, 58%);
  opacity: 0.1;
  border-radius: 50%;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(66, 60%, 58%);
  opacity: 0.08;
  border-radius: 50%;
}

.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.newsletter-description {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  margin-bottom: 35px;
  line-height: 1.7;
}

.newsletter-form {
  background: #ffffff;
  padding: 15px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  padding: 15px 25px;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #333333;
  background: transparent;
  outline: none;
}

.newsletter-form input[type="email"]::placeholder {
  color: #999999;
}

.newsletter-form button {
  background: hsl(66, 60%, 33%);
  color: #ffffff;
  border: none;
  padding: 15px 35px;
  border-radius: 40px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: hsl(66, 60%, 18%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f8f9fa;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: hsl(66, 60%, 58%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(66, 60%, 18%);
  font-weight: bold;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0;
  }

  .newsletter-section h2 {
    font-size: 2rem;
  }

  .newsletter-description {
    font-size: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
    padding: 15px 20px;
  }

  .newsletter-form button {
    width: 100%;
    padding: 15px;
  }

  .newsletter-benefits {
    gap: 15px;
  }

  .benefit-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .newsletter-section h2 {
    font-size: 1.75rem;
  }

  .newsletter-benefits {
    flex-direction: column;
    align-items: center;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
  --primary: hsl(66, 60%, 33%);
  --secondary: hsl(66, 60%, 18%);
  --accent: hsl(66, 60%, 58%);
}

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 25px;
}

.hero-description {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.hero-image-wrapper {
  flex: 1;
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-advantages {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.advantages-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 25px;
  text-align: center;
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.advantage-item {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #333;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.advantage-icon {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary-hero {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 40px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-primary-hero:hover {
  background: var(--secondary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-secondary-hero {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 40px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .advantages-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-advantages {
    padding: 30px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    justify-content: center;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  .services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Libre Baskerville', serif;
  }

  .services-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(66, 60%, 18%);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .services-intro {
    font-family: 'Libre Baskerville', serif;
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
  }

  .service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 28px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-color: hsl(66, 60%, 58%);
  }

  .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(66, 60%, 33%) 0%, hsl(66, 60%, 18%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(66, 60%, 58%) 0%, hsl(66, 60%, 33%) 100%);
    transform: rotate(360deg);
  }

  .service-icon i {
    font-size: 32px;
    color: #ffffff;
  }

  .service-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: hsl(66, 60%, 18%);
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .service-description {
    font-family: 'Libre Baskerville', serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .service-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .service-price {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(66, 60%, 33%);
    font-size: 1.5rem;
  }

  .service-price small {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
  }

  .service-terms {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
  }

  .services-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 20px;
    background: linear-gradient(135deg, hsl(66, 60%, 33%) 0%, hsl(66, 60%, 18%) 100%);
    border-radius: 20px;
  }

  .services-cta h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .services-cta p {
    color: #f8f9fa;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: hsl(66, 60%, 58%);
    color: hsl(66, 60%, 18%);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid hsl(66, 60%, 58%);
  }

  .cta-button:hover {
    background: #ffffff;
    color: hsl(66, 60%, 18%);
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    .services-section {
      padding: 50px 0;
    }

    .services-section h2 {
      font-size: 2rem;
    }

    .services-intro {
      font-size: 1rem;
      margin-bottom: 40px;
    }

    .service-card {
      padding: 28px 22px;
    }

    .service-icon {
      width: 60px;
      height: 60px;
    }

    .service-icon i {
      font-size: 28px;
    }

    .service-card h3 {
      font-size: 1.2rem;
    }

    .service-price {
      font-size: 1.3rem;
    }

    .services-cta h3 {
      font-size: 1.6rem;
    }

    .services-cta p {
      font-size: 1rem;
    }
  }

.blog-preview-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  .blog-preview-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(66, 60%, 58%, 0.1);
    border-radius: 50%;
    z-index: 0;
  }

  .blog-preview-section .container {
    position: relative;
    z-index: 1;
  }

  .blog-section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .blog-section-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(66, 60%, 18%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .blog-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(66, 60%, 58%);
    border-radius: 2px;
  }

  .blog-section-header p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

  .blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  }

  .blog-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
  }

  .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .blog-card:hover .blog-card-image img {
    transform: scale(1.1);
  }

  .blog-card-meta {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
  }

  .blog-meta-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    color: hsl(66, 60%, 18%);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(5px);
  }

  .blog-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .blog-card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(66, 60%, 18%);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  .blog-card:hover .blog-card-title {
    color: hsl(66, 60%, 33%);
  }

  .blog-card-excerpt {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
  }

  .blog-date {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blog-read-more {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: hsl(66, 60%, 33%);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
  }

  .blog-read-more:hover {
    color: hsl(66, 60%, 18%);
    gap: 10px;
  }

  .blog-read-more::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .blog-read-more:hover::after {
    transform: translateX(3px);
  }

  .blog-view-all {
    text-align: center;
    margin-top: 60px;
  }

  .btn-view-all {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(66, 60%, 33%);
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid hsl(66, 60%, 33%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .btn-view-all:hover {
    background: hsl(66, 60%, 18%);
    border-color: hsl(66, 60%, 18%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    color: #ffffff;
  }

  @media (max-width: 768px) {
    .blog-preview-section {
      padding: 60px 0;
    }

    .blog-section-header h2 {
      font-size: 2rem;
    }

    .blog-section-header p {
      font-size: 1rem;
    }

    .blog-card {
      margin-bottom: 30px;
    }

    .blog-card-image {
      height: 200px;
    }

    .blog-card-content {
      padding: 25px;
    }

    .blog-card-title {
      font-size: 1.3rem;
    }

    .blog-card-footer {
      flex-direction: column;
      gap: 15px;
      align-items: flex-start;
    }

    .blog-view-all {
      margin-top: 40px;
    }

    .btn-view-all {
      padding: 14px 35px;
      font-size: 1rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

.offer-section {
  font-family: 'Libre Baskerville', serif;
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(66, 60%, 95%) 0%, hsl(66, 40%, 98%) 100%);
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsla(66, 60%, 58%, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(66, 60%, 33%, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-container {
  position: relative;
  z-index: 2;
}

.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, hsl(66, 60%, 33%) 0%, hsl(66, 60%, 18%) 100%);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.offer-heading {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: hsl(66, 60%, 18%);
  margin-bottom: 25px;
  line-height: 1.2;
}

.offer-description {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  margin-top: 30px;
  border: 3px solid hsl(66, 60%, 58%);
  position: relative;
}

.deadline-block {
  background: linear-gradient(135deg, hsl(66, 60%, 58%) 0%, hsl(66, 50%, 48%) 100%);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.deadline-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: hsl(66, 60%, 18%);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deadline-date {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: hsl(66, 60%, 33%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: hsl(66, 60%, 97%);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid hsl(66, 60%, 58%);
}

.benefit-item:hover {
  background: hsl(66, 60%, 95%);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(66, 60%, 33%) 0%, hsl(66, 60%, 18%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}

.benefit-text {
  flex: 1;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  padding-top: 8px;
}

.discount-highlight {
  background: linear-gradient(135deg, hsl(66, 60%, 18%) 0%, hsl(66, 60%, 33%) 100%);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.discount-percentage {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.discount-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, hsl(66, 60%, 33%) 0%, hsl(66, 60%, 18%) 100%);
  color: #fff;
  padding: 18px 50px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  border: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, hsl(66, 60%, 28%) 0%, hsl(66, 60%, 13%) 100%);
  color: #fff;
}

.urgency-note {
  text-align: center;
  margin-top: 25px;
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
}

@media (max-width: 768px) {
  .offer-heading {
    font-size: 2rem;
  }
  
  .offer-card {
    padding: 30px 20px;
  }
  
  .deadline-date {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .calendar-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .discount-percentage {
    font-size: 3rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .benefit-icon {
    margin: 0 auto;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  #credentials {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-family: 'Libre Baskerville', serif;
  }

  #credentials .section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: hsl(66, 60%, 18%);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
  }

  #credentials .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(66, 60%, 58%);
  }

  #credentials .credential-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  #credentials .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: hsl(66, 60%, 58%);
  }

  #credentials .credential-icon {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 15px;
  }

  #credentials .credential-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }

  @media (max-width: 768px) {
    #credentials {
      padding: 40px 0;
    }

    #credentials .section-title {
      font-size: 1.6rem;
      margin-bottom: 30px;
    }

    #credentials .credential-card {
      padding: 20px 10px;
      margin-bottom: 15px;
    }

    #credentials .credential-icon {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    #credentials .credential-title {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 576px) {
    #credentials .section-title {
      font-size: 1.4rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Libre Baskerville', serif;
}

.testimonials-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(66, 60%, 18%);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials-section .subtitle {
  font-family: 'Libre Baskerville', serif;
  color: #555;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.testimonial-card.featured {
  border-left: 4px solid hsl(66, 60%, 33%);
}

.testimonial-card.standard {
  border-top: 2px solid hsl(66, 60%, 58%);
}

.testimonial-card.compact {
  padding: 20px;
  background: linear-gradient(to right, #ffffff, #f8f9fa);
}

.rating {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}

.rating .star {
  color: hsl(66, 60%, 33%);
  font-size: 1.2rem;
}

.rating .star.empty {
  color: #ddd;
}

.testimonial-text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-text.short {
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
}

.testimonial-text.long {
  font-size: 0.9rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(66, 60%, 33%), hsl(66, 60%, 58%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(66, 60%, 18%);
  font-size: 1rem;
  margin-bottom: 3px;
}

.author-location {
  color: #666;
  font-size: 0.85rem;
}

.testimonial-badge {
  display: inline-block;
  background: hsl(66, 60%, 58%);
  color: hsl(66, 60%, 18%);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial-date {
  color: #999;
  font-size: 0.8rem;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 20px;
    margin-bottom: 20px;
  }
}

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  font-family: 'Libre Baskerville', serif;
}

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid hsl(66, 60%, 33%);
}

.disclaimer-icon {
  font-size: 3rem;
  color: hsl(66, 60%, 33%);
  margin-bottom: 25px;
  display: inline-block;
}

.disclaimer-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: hsl(66, 60%, 18%);
  margin-bottom: 30px;
  text-align: center;
}

.disclaimer-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333333;
  text-align: justify;
  margin-bottom: 0;
}

.disclaimer-text strong {
  color: hsl(66, 60%, 18%);
  font-weight: 600;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-container {
    padding: 35px 25px;
    margin: 0 15px;
  }
  
  .disclaimer-title {
    font-size: 1.8rem;
  }
  
  .disclaimer-icon {
    font-size: 2.5rem;
  }
  
  .disclaimer-text {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .disclaimer-container {
    padding: 30px 20px;
  }
  
  .disclaimer-title {
    font-size: 1.6rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  :root {
    --primary-color: hsl(66, 60%, 33%);
    --secondary-color: hsl(66, 60%, 18%);
    --accent-color: hsl(66, 60%, 58%);
  }

  body {
    font-family: 'Libre Baskerville', serif;
    color: #333;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

  .policy-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
  }

  .policy-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }

  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.8rem;
  }

  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
  }

  .policy-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .contact-box {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    font-weight: 600;
  }

  .effective-date {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
  }

  .highlight-box {
    background: #fff;
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

  :root {
    --primary-color: hsl(66, 60%, 33%);
    --secondary-color: hsl(66, 60%, 18%);
    --accent-color: hsl(66, 60%, 58%);
  }

  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: #2c3e50;
    line-height: 1.8;
  }

  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }

  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
  }

  .policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
  }

  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }

  .policy-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }

  .policy-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }

  .policy-content a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }

  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .policy-content li {
    margin-bottom: 0.8rem;
  }

  .policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 10px;
  }

  .policy-header h1 {
    color: white;
    border-bottom: none;
    margin-bottom: 0.5rem;
  }

  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
  }

  .contact-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }

  .contact-box strong {
    color: var(--primary-color);
  }

  .section-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--accent-color);
  }

  .important-notice {
    background-color: #fff9e6;
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
  }

  .important-notice strong {
    color: var(--primary-color);
  }