:root {
            --primary: hsl(59, 38%, 44%);
            --secondary: hsl(59, 38%, 29%);
            --accent: hsl(59, 38%, 69%);
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: 'Quicksand', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Quicksand', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(134, 130, 75, 0.25);
        }
        
        .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='rgba(134, 130, 75, 1)' 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(59, 38%, 29%);
    margin-bottom: 1.5rem;
    text-align: center;
  }

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

  #about .about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  #about .about-block {
    display: flex;
    align-items: center;
    gap: 3rem;
  }

  #about .about-block:nth-child(even) {
    flex-direction: row-reverse;
  }

  #about .about-text {
    flex: 1;
  }

  #about .about-image {
    flex: 1;
    position: relative;
  }

  #about .about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  #about .about-heading {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: hsl(59, 38%, 29%);
    margin-bottom: 1.5rem;
  }

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

  #about .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  #about .value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  #about .value-icon {
    width: 60px;
    height: 60px;
    background: hsl(59, 38%, 69%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: hsl(59, 38%, 29%);
  }

  #about .value-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: hsl(59, 38%, 29%);
    margin-bottom: 0.8rem;
  }

  #about .value-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
  }

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

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

    #about .about-block,
    #about .about-block:nth-child(even) {
      flex-direction: column;
    }

    #about .about-image img {
      height: 300px;
    }

    #about .values-grid {
      grid-template-columns: 1fr;
    }
  }

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

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

    #about .about-heading {
      font-size: 1.6rem;
    }

    #about .about-text p {
      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');

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

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

  #portfolio .section-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #portfolio .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(59, 38%, 44%), hsl(59, 38%, 69%));
    border-radius: 2px;
  }

  #portfolio .section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.8;
  }

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

  #portfolio .filter-btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border: 2px solid hsl(59, 38%, 44%);
    background: #fff;
    color: hsl(59, 38%, 29%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(59, 38%, 44%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

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

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

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

  #portfolio .portfolio-image {
    position: relative;
    overflow: hidden;
    height: 280px;
  }

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

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

  #portfolio .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
  }

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

  #portfolio .portfolio-overlay .category-badge {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    background: hsl(59, 38%, 44%);
    color: #fff;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

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

  #portfolio .portfolio-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    transition: color 0.3s ease;
  }

  #portfolio .portfolio-item:hover .portfolio-content h3 {
    color: hsl(59, 38%, 44%);
  }

  #portfolio .portfolio-content .category {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(59, 38%, 44%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
  }

  #portfolio .portfolio-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
  }

  #portfolio .modal-content {
    border-radius: 12px;
    border: none;
  }

  #portfolio .modal-header {
    background: linear-gradient(135deg, hsl(59, 38%, 44%), hsl(59, 38%, 69%));
    color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 25px 30px;
    border: none;
  }

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

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

  #portfolio .modal-body {
    padding: 35px;
  }

  #portfolio .modal-body img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
  }

  #portfolio .modal-body h5 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    margin-top: 25px;
  }

  #portfolio .modal-body p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  #portfolio .modal-body .project-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
  }

  #portfolio .modal-body .project-details .detail-item {
    display: flex;
    margin-bottom: 12px;
    font-size: 0.95rem;
  }

  #portfolio .modal-body .project-details .detail-item:last-child {
    margin-bottom: 0;
  }

  #portfolio .modal-body .project-details .detail-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #222;
    min-width: 140px;
  }

  #portfolio .modal-body .project-details .detail-value {
    color: #555;
  }

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

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

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

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

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

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

    #portfolio .portfolio-image {
      height: 220px;
    }

    #portfolio .modal-body {
      padding: 25px;
    }
  }

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

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

    #portfolio .modal-header .modal-title {
      font-size: 1.5rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:wght@400;700&display=swap');
  @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

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

  #advantages .section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #222;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
  }

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

  #advantages .advantage-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  #advantages .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(59, 38%, 44%) 0%, hsl(59, 38%, 69%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #advantages .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: hsl(59, 38%, 69%);
  }

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

  #advantages .icon-wrapper {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(59, 38%, 44%) 0%, hsl(59, 38%, 29%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
  }

  #advantages .advantage-card:hover .icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(59, 38%, 29%) 0%, hsl(59, 38%, 44%) 100%);
  }

  #advantages .icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
  }

  #advantages .advantage-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: #222;
    text-align: center;
    margin-bottom: 15px;
  }

  #advantages .advantage-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #555;
    text-align: center;
    line-height: 1.7;
    margin: 0;
  }

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

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

    #advantages .section-subtitle {
      font-size: 1rem;
      margin-bottom: 40px;
    }

    #advantages .advantage-card {
      margin-bottom: 25px;
    }
  }

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

    #advantages .icon-wrapper {
      width: 65px;
      height: 65px;
    }

    #advantages .icon-wrapper i {
      font-size: 1.7rem;
    }

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

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

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

  #statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(59, 38%, 44%) 0%, hsl(59, 38%, 69%) 100%);
  }

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

  .statistics-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    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: 3px;
    background: hsl(59, 38%, 44%);
  }

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

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

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

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: hsl(59, 38%, 44%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: hsl(59, 38%, 69%);
  }

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

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

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

  .stat-icon i {
    font-size: 2rem;
    color: #ffffff;
  }

  .stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(59, 38%, 29%);
    margin-bottom: 12px;
    line-height: 1;
  }

  .stat-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
  }

  .stat-context {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: #777;
    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(250px, 1fr));
      gap: 20px;
    }

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

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

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

    .stat-icon i {
      font-size: 1.7rem;
    }
  }

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

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

footer h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

footer p, footer ul, footer a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

footer a {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: hsl(59, 38%, 69%);
  transform: translateX(3px);
}

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

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

.footer-description {
  margin-bottom: 25px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-info-item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info-item i {
  margin-right: 10px;
  color: hsl(59, 38%, 69%);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.business-hours {
  font-size: 0.9rem;
  line-height: 1.9;
}

.business-hours strong {
  color: hsl(59, 38%, 69%);
  font-weight: 600;
}

#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(59, 38%, 44%);
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

#cookieNotice h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

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

.cookie-categories {
  margin: 25px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid hsl(59, 38%, 44%);
}

.cookie-category {
  margin-bottom: 15px;
  padding: 12px;
  background: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.cookie-category:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-category strong {
  font-family: 'Quicksand', sans-serif;
  color: #222;
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
}

.cookie-category span {
  font-size: 0.85rem;
  color: #666;
  font-family: 'Libre Baskerville', serif;
}

.cookie-category-required {
  border-left: 3px solid hsl(59, 38%, 44%);
}

.cookie-category-optional {
  border-left: 3px solid #6c757d;
}

.cookie-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 8px;
  font-family: 'Quicksand', sans-serif;
}

.badge-required {
  background: hsl(59, 38%, 69%);
  color: #222;
}

.badge-optional {
  background: #e9ecef;
  color: #6c757d;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.cookie-btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-btn-accept {
  background: hsl(59, 38%, 44%);
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: hsl(59, 38%, 39%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.cookie-btn-reject {
  background: #6c757d;
  color: #ffffff;
}

.cookie-btn-reject:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.cookie-btn-settings {
  background: transparent;
  color: hsl(59, 38%, 44%);
  border: 2px solid hsl(59, 38%, 44%);
}

.cookie-btn-settings:hover {
  background: hsl(59, 38%, 44%);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
    text-align: center;
  }

  footer h5 {
    margin-top: 30px;
  }

  footer h5:first-child {
    margin-top: 0;
  }

  .contact-info-item {
    justify-content: center;
  }

  #cookieNotice {
    padding: 20px 0;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

.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(59, 38%, 44%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Quicksand, sans-serif; color: hsl(59, 38%, 29%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(59, 38%, 44%); }
.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(59, 38%, 29%); font-family: Quicksand, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(59, 38%, 29%); font-family: Quicksand, sans-serif; }
.blog-article a { color: hsl(59, 38%, 44%); }
.blog-article a:hover { color: hsl(59, 38%, 69%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(59, 38%, 44%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

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

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

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

  #contact .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(59, 38%, 44%);
    border-radius: 2px;
  }

  #contact .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

  #contact .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }

  #contact .contact-form-container {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  }

  #contact .form-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 30px;
  }

  #contact .form-group {
    margin-bottom: 25px;
  }

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

  #contact .form-label .required {
    color: hsl(59, 38%, 44%);
    margin-left: 3px;
  }

  #contact .form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #333;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  #contact .form-control:focus {
    outline: none;
    border-color: hsl(59, 38%, 44%);
    background: #ffffff;
    box-shadow: 0 0 0 4px hsla(59, 38%, 44%, 0.1);
  }

  #contact textarea.form-control {
    min-height: 150px;
    resize: vertical;
  }

  #contact .submit-btn {
    width: 100%;
    padding: 16px 30px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: hsl(59, 38%, 44%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
  }

  #contact .submit-btn:hover {
    background: hsl(59, 38%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  #contact .contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  #contact .info-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-left: 4px solid hsl(59, 38%, 44%);
  }

  #contact .info-card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  #contact .info-card-icon {
    width: 32px;
    height: 32px;
    background: hsl(59, 38%, 69%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  #contact .info-card-icon svg {
    width: 18px;
    height: 18px;
    fill: hsl(59, 38%, 29%);
  }

  #contact .info-item {
    margin-bottom: 18px;
    display: flex;
    align-items: start;
    gap: 12px;
  }

  #contact .info-item:last-child {
    margin-bottom: 0;
  }

  #contact .info-item-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
    min-width: 80px;
  }

  #contact .info-item-value {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  #contact .info-item-value a {
    color: hsl(59, 38%, 44%);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #contact .info-item-value a:hover {
    color: hsl(59, 38%, 29%);
    text-decoration: underline;
  }

  #contact .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #contact .hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
  }

  #contact .hours-list li:last-child {
    border-bottom: none;
  }

  #contact .hours-day {
    color: #555;
    font-weight: 600;
  }

  #contact .hours-time {
    color: #333;
  }

  #contact .location-note {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
  }

  @media (max-width: 992px) {
    #contact .contact-wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    #contact .section-title {
      font-size: 2.3rem;
    }

    #contact .contact-form-container {
      padding: 35px;
    }
  }

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

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

    #contact .section-subtitle {
      font-size: 1rem;
    }

    #contact .contact-form-container,
    #contact .info-card {
      padding: 25px;
    }

    #contact .form-title {
      font-size: 1.5rem;
    }

    #contact .info-card-title {
      font-size: 1.2rem;
    }

    #contact .hours-list li {
      flex-direction: column;
      gap: 5px;
    }
  }

@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(59, 38%, 44%);
    --secondary-color: hsl(59, 38%, 29%);
    --accent-color: hsl(59, 38%, 69%);
  }

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

  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    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: 3px solid var(--primary-color);
  }

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .policy-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }

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

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

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

  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  }

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

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

  .cookie-type-card {
    background-color: #fff;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

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

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

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

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

  #faq .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  #faq .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(59, 38%, 44%);
    border-radius: 2px;
  }

  #faq .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
  }

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

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

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

  #faq .accordion-button {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    background: #ffffff;
    padding: 24px 28px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed) {
    background: hsl(59, 38%, 44%);
    color: #ffffff;
    box-shadow: none;
  }

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

  #faq .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
  }

  #faq .accordion-body {
    padding: 28px;
    background: #ffffff;
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    border-top: 1px solid #e9ecef;
  }

  #faq .accordion-body p {
    margin-bottom: 12px;
  }

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

  #faq .accordion-body strong {
    color: #222;
    font-weight: 700;
  }

  #faq .faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, hsl(59, 38%, 44%) 0%, hsl(59, 38%, 29%) 100%);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  }

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

  #faq .faq-cta p {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.95;
  }

  #faq .faq-cta .btn-contact {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 40px;
    background: #ffffff;
    color: hsl(59, 38%, 29%);
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  #faq .faq-cta .btn-contact:hover {
    background: hsl(59, 38%, 69%);
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

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

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

    #faq .section-subtitle {
      font-size: 1rem;
    }

    #faq .accordion-button {
      font-size: 1.05rem;
      padding: 20px 22px;
    }

    #faq .accordion-body {
      padding: 22px;
      font-size: 0.95rem;
    }

    #faq .faq-cta {
      padding: 30px 20px;
    }

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

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

  #newsletter {
    background: linear-gradient(135deg, hsl(59, 38%, 44%) 0%, hsl(59, 38%, 29%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  #newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
  }

  #newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    z-index: 1;
  }

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

  #newsletter .newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

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

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

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

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

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

  #newsletter .newsletter-form button:hover {
    background: hsl(59, 38%, 29%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

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

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

  #newsletter .benefit-item svg {
    width: 20px;
    height: 20px;
    fill: hsl(59, 38%, 69%);
    flex-shrink: 0;
  }

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

    #newsletter h2 {
      font-size: 2rem;
    }

    #newsletter .newsletter-description {
      font-size: 1rem;
      margin-bottom: 30px;
    }

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

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

    #newsletter .newsletter-form button {
      width: 100%;
      padding: 12px 30px;
    }

    #newsletter .newsletter-benefits {
      gap: 20px;
      margin-top: 30px;
    }

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

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

    #newsletter .newsletter-benefits {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
  }

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

.hero-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(133, 127, 75, 0.05) 0%, rgba(133, 127, 75, 0.02) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #222;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: hsl(59, 38%, 29%);
  margin-bottom: 2rem;
}

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

.hero-image-container {
  position: relative;
  margin-bottom: 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
}

.advantages-list li {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  color: #222;
  padding: 1rem 0;
  padding-left: 3rem;
  position: relative;
  border-bottom: 1px solid rgba(133, 127, 75, 0.15);
}

.advantages-list li:last-child {
  border-bottom: none;
}

.advantages-list li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(59, 38%, 44%);
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(59, 38%, 69%, 0.2);
  border-radius: 50%;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.btn-primary-hero {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  background-color: hsl(59, 38%, 44%);
  border: none;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(133, 127, 75, 0.3);
}

.btn-primary-hero:hover {
  background-color: hsl(59, 38%, 29%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(133, 127, 75, 0.4);
  color: #fff;
}

.btn-secondary-hero {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  background-color: transparent;
  border: 2px solid hsl(59, 38%, 44%);
  color: hsl(59, 38%, 29%);
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background-color: hsl(59, 38%, 44%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(133, 127, 75, 0.3);
}

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

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section h2 {
    font-size: 1.4rem;
  }

  .hero-description {
    font-size: 1rem;
    text-align: left;
  }

  .advantages-list li {
    font-size: 0.95rem;
    padding-left: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section h2 {
    font-size: 1.2rem;
  }

  .advantages-list li i {
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
  }
}

@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-color: #ffffff;
  }

  #credentials .section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
  }

  #credentials .credential-card {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #credentials .credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

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

  #credentials .credential-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
  }

  @media (max-width: 991px) {
    #credentials .section-title {
      font-size: 1.75rem;
      margin-bottom: 30px;
    }

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

    #credentials .credential-icon {
      font-size: 2.2rem;
    }

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

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

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

    #credentials .credential-card {
      padding: 18px 10px;
    }

    #credentials .credential-icon {
      font-size: 2rem;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;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 .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .services-section .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
  }

  .services-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
  }

  .service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(59, 38%, 44%) 0%, hsl(59, 38%, 69%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: hsl(59, 38%, 69%);
  }

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

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

  .service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(59, 38%, 69%) 0%, hsl(59, 38%, 44%) 100%);
  }

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

  .service-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }

  .service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .service-price {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: hsl(59, 38%, 44%);
    margin-bottom: 12px;
  }

  .service-duration {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
  }

  .service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
  }

  .service-features li {
    font-size: 0.9rem;
    color: #555;
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
  }

  .service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(59, 38%, 44%);
    font-weight: bold;
  }

  .service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: hsl(59, 38%, 44%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid hsl(59, 38%, 44%);
  }

  .service-btn:hover {
    background: hsl(59, 38%, 29%);
    border-color: hsl(59, 38%, 29%);
    color: #ffffff;
    transform: translateX(5px);
  }

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

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

    .service-card {
      padding: 25px 20px;
      margin-bottom: 25px;
    }

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

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

.offer-section {
  background: linear-gradient(135deg, hsl(59, 38%, 44%) 0%, hsl(59, 38%, 29%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

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

.offer-badge {
  display: inline-block;
  background: hsl(59, 38%, 69%);
  color: #222;
  padding: 8px 24px;
  border-radius: 30px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.offer-heading {
  font-family: 'Quicksand', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.offer-description {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: #f8f9fa;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.offer-date-block {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  margin: 50px auto;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.offer-date-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-date-value {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(59, 38%, 29%);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: hsl(59, 38%, 44%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
}

.offer-benefits {
  max-width: 800px;
  margin: 50px auto;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: hsl(59, 38%, 69%);
  transform: translateX(10px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: hsl(59, 38%, 69%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #222;
}

.benefit-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  color: #fff;
  margin: 0;
  line-height: 1.6;
}

.offer-cta-wrapper {
  margin-top: 50px;
}

.offer-cta-btn {
  display: inline-block;
  background: #fff;
  color: hsl(59, 38%, 29%);
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-btn:hover {
  background: hsl(59, 38%, 69%);
  color: #222;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.discount-badge {
  display: inline-block;
  background: #fff;
  color: hsl(59, 38%, 29%);
  font-family: 'Quicksand', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  padding: 30px 40px;
  border-radius: 20px;
  margin: 30px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  line-height: 1;
}

@media (max-width: 768px) {
  .offer-section {
    padding: 60px 0;
  }
  
  .offer-heading {
    font-size: 2rem;
  }
  
  .offer-description {
    font-size: 1rem;
  }
  
  .offer-date-value {
    font-size: 2.5rem;
    flex-direction: column;
  }
  
  .calendar-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .discount-badge {
    font-size: 3rem;
    padding: 20px 30px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-item:hover {
    transform: none;
  }
}

.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-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonials-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    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-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(59, 38%, 44%) 0%, hsl(59, 38%, 69%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 5px 0;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

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

.star {
    color: hsl(59, 38%, 44%);
    font-size: 1.2rem;
}

.star.empty {
    color: #ddd;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    flex-grow: 1;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, hsl(59, 38%, 96%) 0%, #ffffff 100%);
    border: 2px solid hsl(59, 38%, 69%);
}

.testimonial-card.compact {
    padding: 25px;
}

.testimonial-card.detailed {
    padding: 35px;
}

.testimonial-badge {
    display: inline-block;
    background: hsl(59, 38%, 44%);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

  .blog-preview-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-align: center;
  }

  .blog-preview-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    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;
  }

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

  .blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
  }

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

  .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
  }

  .blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .blog-card-meta i {
    color: hsl(59, 38%, 44%);
  }

  .blog-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .blog-card h3 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-card h3 a:hover {
    color: hsl(59, 38%, 44%);
  }

  .blog-card-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(59, 38%, 44%);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
  }

  .blog-card-link:hover {
    gap: 0.8rem;
    color: hsl(59, 38%, 29%);
  }

  .blog-view-all {
    text-align: center;
    margin-top: 3rem;
  }

  .btn-view-all {
    display: inline-block;
    padding: 14px 40px;
    background: hsl(59, 38%, 44%);
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .btn-view-all:hover {
    background: hsl(59, 38%, 29%);
    color: #ffffff;
    transform: translateY(-2px);
  }

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

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

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

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

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

.disclaimer-section .section-icon {
  font-size: 3.5rem;
  color: hsl(59, 38%, 44%);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.disclaimer-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 2rem;
  text-align: center;
}

.disclaimer-section .disclaimer-content {
  background: #ffffff;
  border-left: 4px solid hsl(59, 38%, 44%);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-section .disclaimer-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

.disclaimer-section .disclaimer-text strong {
  color: #222;
  font-weight: 600;
}

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

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

  .disclaimer-section .disclaimer-content {
    padding: 1.5rem;
  }

  .disclaimer-section .section-icon {
    font-size: 2.5rem;
  }
}

@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(59, 38%, 44%);
    --secondary-color: hsl(59, 38%, 29%);
    --accent-color: hsl(59, 38%, 69%);
  }

  .policy-content {
    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(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  .policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }

  .policy-content h3 {
    font-size: 1.3rem;
  }

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }

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

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

  .policy-content p {
    margin-bottom: 1rem;
  }

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

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

  .effective-date {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 2rem;
  }

  .section-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 2.5rem 0;
  }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
  
  :root {
    --primary-color: hsl(59, 38%, 44%);
    --secondary-color: hsl(59, 38%, 29%);
    --accent-color: hsl(59, 38%, 69%);
  }
  
  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: #2c3e50;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    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: 3px solid var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .contact-box {
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
  }
  
  .contact-box p {
    margin-bottom: 0.5rem;
  }
  
  .effective-date {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 2rem;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 2rem 0;
  }