:root {
            --primary-color: hsl(46, 59%, 32%);
            --secondary-color: hsl(46, 59%, 17%);
            --accent-color: hsl(46, 59%, 57%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-nav {
            gap: 0.5rem;
        }
        
        .nav-link {
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            color: #444;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            text-decoration: none;
        }
        
        .nav-link:hover,
        .nav-link:focus {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(139, 107, 44, 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(139, 107, 44, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #fff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .nav-link:last-child {
                border-bottom: none;
            }
        }

.about-section {
  font-family: 'Libre Baskerville', serif;
  background-color: #ffffff;
  padding: 80px 0;
}

.about-section h1,
.about-section h2,
.about-section h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(46, 59%, 17%);
  font-weight: 700;
}

.about-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: hsl(46, 59%, 32%);
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  margin-top: 2.5rem;
}

.about-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: hsl(46, 59%, 32%);
}

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

.about-intro {
  background: linear-gradient(135deg, hsl(46, 59%, 32%) 0%, hsl(46, 59%, 17%) 100%);
  padding: 60px 0;
  margin-bottom: 60px;
  color: #ffffff;
}

.about-intro h1 {
  color: #ffffff;
  text-align: center;
}

.about-intro .lead {
  color: #f8f9fa;
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-content {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.about-image {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

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

.value-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.value-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.value-card p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #555555;
}

.timeline-section {
  background-color: #ffffff;
  padding: 50px 0;
}

.mission-vision {
  background: linear-gradient(to right, hsl(46, 59%, 57%) 0%, hsl(46, 59%, 32%) 100%);
  padding: 50px;
  border-radius: 12px;
  margin: 40px 0;
  color: #ffffff;
}

.mission-vision h2 {
  color: #ffffff;
}

.mission-vision p {
  color: #f8f9fa;
  font-size: 1.1rem;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 50px 0;
  padding: 40px 0;
  background-color: #f8f9fa;
  border-radius: 10px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  min-width: 200px;
}

.stat-number {
  font-family: 'Quicksand', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(46, 59%, 32%);
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  color: #555555;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .about-section h1 {
    font-size: 2.2rem;
  }

  .about-section h2 {
    font-size: 1.7rem;
  }

  .about-intro {
    padding: 40px 0;
  }

  .mission-vision {
    padding: 30px 20px;
  }

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

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

@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: hsl(46, 59%, 17%);
    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: hsl(46, 59%, 57%);
    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 30px;
    border: 2px solid hsl(46, 59%, 32%);
    background: transparent;
    color: hsl(46, 59%, 32%);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }

  #portfolio .filter-btn:hover,
  #portfolio .filter-btn.active {
    background: hsl(46, 59%, 32%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  }

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

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

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

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

  #portfolio .portfolio-item:hover .portfolio-image {
    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.3), rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  #portfolio .overlay-icon {
    width: 60px;
    height: 60px;
    background: hsl(46, 59%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
  }

  #portfolio .portfolio-item:hover .overlay-icon {
    transform: scale(1);
  }

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

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

  #portfolio .portfolio-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(46, 59%, 17%);
    margin-bottom: 12px;
    line-height: 1.3;
  }

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

  #portfolio .modal-content {
    border-radius: 15px;
    border: none;
    overflow: hidden;
  }

  #portfolio .modal-header {
    background: linear-gradient(135deg, hsl(46, 59%, 32%) 0%, hsl(46, 59%, 17%) 100%);
    color: #ffffff;
    border: none;
    padding: 25px 30px;
  }

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

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

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

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

  #portfolio .modal-category {
    font-family: 'Quicksand', sans-serif;
    display: inline-block;
    background: hsl(46, 59%, 57%);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

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

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

  #portfolio .modal-body ul {
    list-style: none;
    padding-left: 0;
  }

  #portfolio .modal-body ul li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
  }

  #portfolio .modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(46, 59%, 57%);
    font-weight: bold;
    font-size: 1.2rem;
  }

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

    #portfolio .section-header h2 {
      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;
    }

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

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

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

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

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

.advantages-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(46, 59%, 17%);
  margin-bottom: 1rem;
  text-align: center;
}

.advantages-section .subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.advantage-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  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(46, 59%, 32%) 0%, hsl(46, 59%, 57%) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: hsl(46, 59%, 57%);
}

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

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(46, 59%, 32%) 0%, hsl(46, 59%, 57%) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.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(46, 59%, 17%);
  margin-bottom: 20px;
  text-align: center;
}

.advantage-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  text-align: center;
  margin: 0;
}

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

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

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

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

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

  .advantage-icon i {
    font-size: 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(46, 59%, 32%) 0%, hsl(46, 59%, 57%) 50%, hsl(46, 59%, 32%) 100%);
  }

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

  #statistics .section-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: hsl(46, 59%, 32%);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 400;
  }

  #statistics .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
  }

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

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

  .stat-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 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: 5px;
    background: linear-gradient(90deg, hsl(46, 59%, 32%), hsl(46, 59%, 57%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

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

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

  .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, hsl(46, 59%, 32%), hsl(46, 59%, 57%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
  }

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

  .stat-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid hsl(46, 59%, 57%);
    opacity: 0;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }
    100% {
      transform: scale(1.3);
      opacity: 0;
    }
  }

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

  .stat-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .stat-context {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin-top: 10px;
  }

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

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

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

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

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

    .stat-icon {
      width: 70px;
      height: 70px;
      font-size: 2rem;
    }
  }

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

    #statistics .section-description {
      font-size: 1rem;
    }

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

footer {
  background: linear-gradient(135deg, hsl(46, 59%, 17%) 0%, hsl(46, 59%, 32%) 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(46, 59%, 57%);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

footer p, footer ul, footer address {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #f8f9fa;
}

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

footer a:hover {
  color: hsl(46, 59%, 57%);
}

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

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

footer .contact-info i {
  color: hsl(46, 59%, 57%);
  margin-right: 10px;
  width: 20px;
}

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

#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: 25px 0;
  border-top: 3px solid hsl(46, 59%, 32%);
  font-family: 'Libre Baskerville', serif;
}

#cookieNotice h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(46, 59%, 17%);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

#cookieNotice p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

#cookieNotice .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

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

#cookieNotice .cookie-category strong {
  color: hsl(46, 59%, 17%);
  font-size: 0.95rem;
  min-width: 180px;
}

#cookieNotice .cookie-category span {
  color: #666;
  font-size: 0.85rem;
}

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

#cookieNotice .btn-accept-all {
  background: #28a745;
  border: none;
  color: #ffffff;
  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: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

#cookieNotice .btn-reject {
  background: #6c757d;
  border: none;
  color: #ffffff;
  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);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

#cookieNotice .btn-manage {
  background: transparent;
  border: 2px solid hsl(46, 59%, 32%);
  color: hsl(46, 59%, 17%);
  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(46, 59%, 32%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-top: 25px;
  }
  
  #cookieNotice {
    padding: 20px 0;
  }
  
  #cookieNotice .cookie-category {
    flex-direction: column;
    align-items: flex-start;
  }
  
  #cookieNotice .cookie-category strong {
    min-width: auto;
    margin-bottom: 5px;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

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

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

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

.contact-section h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(46, 59%, 17%);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.contact-section .section-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid hsl(46, 59%, 57%, 0.2);
}

.contact-form-wrapper h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(46, 59%, 32%);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

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

.contact-form .form-control:focus {
  border-color: hsl(46, 59%, 57%);
  box-shadow: 0 0 0 0.2rem hsl(46, 59%, 57%, 0.25);
  outline: none;
}

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

.contact-form .btn-submit {
  background: hsl(46, 59%, 32%);
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
}

.contact-form .btn-submit:hover {
  background: hsl(46, 59%, 17%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.contact-info-wrapper {
  background: linear-gradient(135deg, hsl(46, 59%, 32%) 0%, hsl(46, 59%, 17%) 100%);
  padding: 40px;
  border-radius: 12px;
  color: #fff;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-info-wrapper h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.contact-info-item {
  margin-bottom: 2rem;
  padding-left: 50px;
  position: relative;
}

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

.contact-info-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: hsl(46, 59%, 57%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: hsl(46, 59%, 17%);
}

.contact-info-item h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: hsl(46, 59%, 57%);
}

.contact-info-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f8f9fa;
}

.contact-info-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.contact-info-item a:hover {
  color: hsl(46, 59%, 57%);
  border-bottom-color: hsl(46, 59%, 57%);
}

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

.working-hours-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

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

.working-hours-list .day {
  font-weight: 600;
  color: hsl(46, 59%, 57%);
}

.working-hours-list .time {
  color: #f8f9fa;
}

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

  .contact-section h2 {
    font-size: 2.2rem;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 30px;
    margin-bottom: 30px;
  }

  .contact-info-wrapper {
    margin-bottom: 0;
  }
}

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

  .contact-section h2 {
    font-size: 1.8rem;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 25px;
  }

  .contact-info-item {
    padding-left: 45px;
  }

  .contact-info-icon {
    width: 35px;
    height: 35px;
    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(46, 59%, 32%);
    --secondary-color: hsl(46, 59%, 17%);
    --accent-color: hsl(46, 59%, 57%);
  }

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

  h1, h2, h3, h4, h5, h6 {
    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: 3px solid var(--accent-color);
    color: 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: 15px;
  }

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

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }

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

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

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

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

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

  .last-updated {
    background-color: hsl(46, 59%, 95%);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
  }

  .contact-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

  .contact-box h3 {
    color: white;
    margin-bottom: 1.25rem;
  }

  .contact-box a {
    color: var(--accent-color);
    font-weight: 600;
  }

  .contact-box a:hover {
    color: white;
  }

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

  .cookie-type-card:hover {
    transform: translateX(5px);
  }

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

  .intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: hsl(46, 59%, 97%);
    border-radius: 8px;
  }

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

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

  .faq-intro {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .accordion-button {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: hsl(46, 59%, 17%);
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
  }

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

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

  .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23806f2a'%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;
  }

  .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");
  }

  .accordion-body {
    padding: 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    background-color: #fafafa;
  }

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

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

  .accordion-body strong {
    color: hsl(46, 59%, 32%);
    font-weight: 600;
  }

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

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

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

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

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

    .accordion-button {
      font-size: 1rem;
      padding: 1rem;
    }

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(46, 59%, 32%) 0%, hsl(46, 59%, 17%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

.newsletter-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-content {
  text-align: center;
  color: #ffffff;
}

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

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

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group-newsletter {
  display: flex;
  gap: 15px;
  align-items: stretch;
  margin-bottom: 20px;
}

.newsletter-email-input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #333333;
  transition: all 0.3s ease;
}

.newsletter-email-input:focus {
  outline: none;
  border-color: hsl(46, 59%, 57%);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(186, 153, 73, 0.2);
}

.newsletter-email-input::placeholder {
  color: #999999;
  font-size: 0.95rem;
}

.newsletter-submit-btn {
  padding: 16px 40px;
  background: hsl(46, 59%, 57%);
  color: #222222;
  border: none;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: hsl(46, 59%, 62%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.newsletter-submit-btn:active {
  transform: translateY(0);
}

.newsletter-privacy-note {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
  line-height: 1.5;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: hsl(46, 59%, 57%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 14px;
  height: 14px;
  fill: #222222;
}

.benefit-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  color: #f8f9fa;
}

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

  .newsletter-heading {
    font-size: 2rem;
  }

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

  .form-group-newsletter {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-submit-btn {
    width: 100%;
    padding: 14px 30px;
  }

  .newsletter-benefits {
    gap: 25px;
    margin-top: 35px;
  }

  .benefit-item {
    flex-basis: 100%;
    justify-content: center;
  }
}

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

  .newsletter-email-input {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, hsl(46, 59%, 57%, 0.08) 0%, transparent 100%);
  z-index: 0;
}

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

.hero-section h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(46, 59%, 17%);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

.hero-image-wrapper {
  margin: 3rem 0;
  text-align: center;
}

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

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

.advantages-list li {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #222222;
  padding: 0.9rem 0 0.9rem 3rem;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

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

.advantages-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: hsl(46, 59%, 57%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantages-list li i {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 1rem;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn-primary-hero {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 14px 36px;
  background-color: hsl(46, 59%, 32%);
  color: #ffffff;
  border: 2px solid hsl(46, 59%, 32%);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-hero:hover {
  background-color: hsl(46, 59%, 17%);
  border-color: hsl(46, 59%, 17%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary-hero {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 14px 36px;
  background-color: transparent;
  color: hsl(46, 59%, 32%);
  border: 2px solid hsl(46, 59%, 32%);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary-hero:hover {
  background-color: hsl(46, 59%, 32%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    justify-content: center;
  }

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

  .advantages-list li::before {
    width: 28px;
    height: 28px;
  }

  .advantages-list li i {
    left: 6px;
    font-size: 0.9rem;
  }
}

.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-size: 2.8rem;
    font-weight: 700;
    color: hsl(46, 59%, 17%);
    margin-bottom: 1rem;
    text-align: center;
  }

  .services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: hsl(46, 59%, 57%);
  }

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

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

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

  .service-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(46, 59%, 17%);
    margin-bottom: 20px;
    text-align: center;
  }

  .service-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
  }

  .service-price {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(46, 59%, 32%);
    text-align: center;
    margin-bottom: 15px;
  }

  .service-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
  }

  .service-terms {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .service-terms ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .service-terms li {
    color: #555;
    font-size: 0.85rem;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
  }

  .service-terms li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: hsl(46, 59%, 32%);
    font-weight: bold;
  }

  .service-btn {
    background: hsl(46, 59%, 32%);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
  }

  .service-btn:hover {
    background: hsl(46, 59%, 17%);
    color: #ffffff;
    transform: scale(1.05);
  }

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

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

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

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

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

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

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

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

  .blog-header p {
    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;
  }

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px 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: 15px;
    z-index: 2;
  }

  .blog-meta-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: hsl(46, 59%, 17%);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .blog-meta-badge i {
    color: hsl(46, 59%, 32%);
  }

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

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

  .blog-card:hover .blog-card-title {
    color: hsl(46, 59%, 32%);
  }

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

  .blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(46, 59%, 32%);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
  }

  .blog-card-link:hover {
    color: hsl(46, 59%, 17%);
    gap: 12px;
  }

  .blog-card-link i {
    transition: transform 0.3s ease;
  }

  .blog-card-link:hover i {
    transform: translateX(4px);
  }

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

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

  .btn-view-all:hover {
    background: hsl(46, 59%, 17%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

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

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

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

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

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

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

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

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

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

#testimonials .section-header h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: hsl(46, 59%, 17%);
  margin-bottom: 15px;
}

#testimonials .section-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 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;
  border-left: 4px solid hsl(46, 59%, 57%);
}

.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(46, 59%, 57%) 0%, hsl(46, 59%, 32%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
}

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

.testimonial-location {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

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

.star.empty {
  color: #ddd;
}

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

.testimonial-text p {
  margin-bottom: 0;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(46, 59%, 32%) 0%, hsl(46, 59%, 17%) 100%);
  border-left: 4px solid hsl(46, 59%, 57%);
}

.testimonial-card.featured .testimonial-info h4,
.testimonial-card.featured .testimonial-text {
  color: #ffffff;
}

.testimonial-card.featured .testimonial-location {
  color: rgba(255,255,255,0.8);
}

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

.testimonial-card.compact .testimonial-avatar {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

.testimonial-card.compact .testimonial-info h4 {
  font-size: 1.1rem;
}

.testimonial-card.compact .testimonial-text {
  font-size: 0.95rem;
}

.testimonial-card.detailed {
  padding: 35px;
  border-left-width: 6px;
}

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

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

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

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .testimonial-info h4 {
    font-size: 1.1rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}

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

.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(46, 59%, 57%);
  opacity: 0.1;
  border-radius: 50%;
}

.offer-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(46, 59%, 57%);
  opacity: 0.08;
  border-radius: 50%;
}

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

.offer-badge {
  display: inline-block;
  background: hsl(46, 59%, 57%);
  color: hsl(46, 59%, 17%);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.offer-heading {
  font-family: 'Quicksand', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

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

.offer-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

.deadline-section {
  background: linear-gradient(135deg, hsl(46, 59%, 57%) 0%, hsl(46, 59%, 42%) 100%);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: center;
}

.deadline-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  color: hsl(46, 59%, 17%);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deadline-date {
  font-family: 'Quicksand', sans-serif;
  font-size: 56px;
  color: hsl(46, 59%, 17%);
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.calendar-icon {
  width: 60px;
  height: 60px;
  background: hsl(46, 59%, 17%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(46, 59%, 57%);
  font-size: 32px;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: hsl(46, 59%, 32%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  color: #222;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-content p {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.discount-highlight {
  background: hsl(46, 59%, 32%);
  color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 40px;
}

.discount-percentage {
  font-family: 'Quicksand', sans-serif;
  font-size: 72px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.discount-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-top: 10px;
}

.offer-cta {
  text-align: center;
}

.offer-btn {
  display: inline-block;
  background: hsl(46, 59%, 32%);
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-btn:hover {
  background: hsl(46, 59%, 17%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .offer-section {
    padding: 60px 0;
  }
  
  .offer-heading {
    font-size: 36px;
  }
  
  .offer-description {
    font-size: 16px;
  }
  
  .offer-card {
    padding: 30px 20px;
  }
  
  .deadline-date {
    font-size: 36px;
    flex-direction: column;
    gap: 15px;
  }
  
  .calendar-icon {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
  
  .discount-percentage {
    font-size: 56px;
  }
  
  .discount-text {
    font-size: 20px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .offer-btn {
    font-size: 18px;
    padding: 16px 40px;
  }
}

.credentials-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.credentials-section .section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(46, 59%, 17%);
  text-align: center;
  margin-bottom: 40px;
}

.credential-card {
  background: #ffffff;
  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;
}

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

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

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

@media (max-width: 767px) {
  .credentials-section {
    padding: 40px 0;
  }
  
  .credentials-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .credential-card {
    margin-bottom: 15px;
  }
}

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

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

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(46, 59%, 57%) 0%, hsl(46, 59%, 47%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.disclaimer-icon i {
  font-size: 36px;
  color: #ffffff;
}

.disclaimer-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(46, 59%, 17%);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.disclaimer-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333333;
  text-align: left;
}

.disclaimer-content p {
  margin-bottom: 20px;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

.disclaimer-highlight {
  background: #fef9e7;
  border-left: 4px solid hsl(46, 59%, 57%);
  padding: 20px 25px;
  margin-top: 30px;
  border-radius: 6px;
}

.disclaimer-highlight p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #444444;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 60px 0;
  }
  
  .disclaimer-container {
    padding: 35px 25px;
  }
  
  .disclaimer-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .disclaimer-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
  }
  
  .disclaimer-icon i {
    font-size: 30px;
  }
  
  .disclaimer-content {
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .disclaimer-highlight {
    padding: 18px 20px;
    margin-top: 25px;
  }
}

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

@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(46, 59%, 32%);
    --secondary-color: hsl(46, 59%, 17%);
    --accent-color: hsl(46, 59%, 57%);
  }

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

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

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

  .policy-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-left: 0.75rem;
    border-left: 4px solid var(--accent-color);
  }

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

  .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(--accent-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: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .contact-box h3 {
    color: white;
    margin-bottom: 1rem;
  }

  .contact-box p {
    margin-bottom: 0.5rem;
    text-align: left;
  }

  .highlight-box {
    background-color: rgba(168, 138, 50, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }

  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

@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(46, 59%, 32%);
    --secondary-color: hsl(46, 59%, 17%);
    --accent-color: hsl(46, 59%, 57%);
  }

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

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

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

  .policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    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.3rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }

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

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

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

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

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

  .contact-box {
    background-color: hsl(46, 59%, 95%);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

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

  .effective-date {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
  }

  .section-card {
    background-color: #ffffff;
    border: 1px solid hsl(46, 59%, 85%);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  strong {
    color: var(--secondary-color);
  }

@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(46, 59%, 32%);
    --secondary: hsl(46, 59%, 17%);
    --accent: hsl(46, 59%, 57%);
  }

  .thank-you-section {
    font-family: 'Libre Baskerville', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(46, 59%, 95%) 0%, hsl(46, 59%, 98%) 100%);
    padding: 3rem 1rem;
  }

  .thank-you-container {
    max-width: 650px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 3.5rem 2.5rem;
    text-align: center;
  }

  .success-icon-wrapper {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }

  .success-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: scaleIn 0.5s ease-out;
    box-shadow: 0 5px 20px rgba(134, 116, 52, 0.3);
  }

  .success-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: checkmark 0.6s ease-out 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }

  @keyframes scaleIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes checkmark {
    to {
      stroke-dashoffset: 0;
    }
  }

  .thank-you-heading {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
  }

  .thank-you-subheading {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
  }

  .thank-you-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(46, 10%, 35%);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
  }

  .thank-you-message p {
    margin-bottom: 1rem;
  }

  .thank-you-message p:last-child {
    margin-bottom: 0;
  }

  .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.7s backwards;
  }

  .info-card {
    background: hsl(46, 59%, 97%);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem 1rem;
  }

  .info-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .info-card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
  }

  .info-card-text {
    font-size: 0.9rem;
    color: hsl(46, 10%, 40%);
    line-height: 1.5;
  }

  .btn-home {
    font-family: 'Quicksand', sans-serif;
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.8s backwards;
    box-shadow: 0 4px 15px rgba(134, 116, 52, 0.3);
  }

  .btn-home:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(134, 116, 52, 0.4);
    color: white;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .thank-you-container {
      padding: 2.5rem 1.5rem;
    }

    .thank-you-heading {
      font-size: 2.25rem;
    }

    .thank-you-subheading {
      font-size: 1.25rem;
    }

    .thank-you-message {
      font-size: 1rem;
    }

    .success-icon {
      width: 80px;
      height: 80px;
    }

    .success-icon svg {
      width: 40px;
      height: 40px;
    }

    .info-cards {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .btn-home {
      padding: 0.875rem 2.5rem;
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .thank-you-heading {
      font-size: 1.875rem;
    }

    .thank-you-subheading {
      font-size: 1.125rem;
    }
  }