:root {
            --primary-color: hsl(41, 34%, 45%);
            --secondary-color: hsl(41, 34%, 30%);
            --accent-color: hsl(41, 34%, 70%);
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 4px 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-weight: 600;
            font-size: 1.25rem;
            color: var(--secondary-color);
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Quicksand', sans-serif;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(139, 114, 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%28139, 114, 75, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

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

  .about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    pointer-events: none;
  }

  .about-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }

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

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

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

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

  .about-story {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    border-left: 5px solid hsl(41, 34%, 45%);
  }

  .about-story h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(41, 34%, 30%);
    margin-bottom: 25px;
  }

  .about-story p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
  }

  .about-story p:last-child {
    margin-bottom: 0;
  }

  .about-image-block {
    margin-bottom: 50px;
  }

  .about-image-block img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .about-image-block img:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
  }

  .mission-vision-block {
    background: linear-gradient(135deg, hsl(41, 34%, 45%) 0%, hsl(41, 34%, 30%) 100%);
    border-radius: 16px;
    padding: 50px;
    color: #ffffff;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
  }

  .mission-vision-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .mission-vision-block h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
  }

  .mission-vision-block p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
    position: relative;
  }

  .mission-vision-block p:last-child {
    margin-bottom: 0;
  }

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

  .value-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(41, 34%, 70%);
    text-align: center;
  }

  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    border-top-color: hsl(41, 34%, 45%);
  }

  .value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(41, 34%, 70%) 0%, hsl(41, 34%, 45%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
  }

  .value-card h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(41, 34%, 30%);
    margin-bottom: 15px;
  }

  .value-card p {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
  }

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

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

    .about-header p {
      font-size: 1.05rem;
    }

    .about-story {
      padding: 35px 25px;
    }

    .about-story h3 {
      font-size: 1.7rem;
    }

    .about-story p {
      font-size: 1rem;
    }

    .mission-vision-block {
      padding: 35px 25px;
    }

    .mission-vision-block h3 {
      font-size: 1.6rem;
    }

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

    .value-card {
      padding: 30px 25px;
    }
  }

  @media (max-width: 576px) {
    .about-header h2 {
      font-size: 1.9rem;
    }

    .about-story {
      padding: 25px 20px;
    }

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

@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: hsl(41, 34%, 45%);
  border-radius: 2px;
}

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

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

.portfolio-filters .filter-btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  border: 2px solid hsl(41, 34%, 45%);
  background: transparent;
  color: hsl(41, 34%, 30%);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.portfolio-filters .filter-btn:hover,
.portfolio-filters .filter-btn.active {
  background: hsl(41, 34%, 45%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

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

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

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

.portfolio-item-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.portfolio-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.portfolio-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

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

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

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

.portfolio-item-content h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.4;
}

.portfolio-item-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.portfolio-item-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.portfolio-item-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-item-meta i {
  color: hsl(41, 34%, 45%);
}

.view-details-btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 10px 25px;
  background: hsl(41, 34%, 45%);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.view-details-btn:hover {
  background: hsl(41, 34%, 30%);
  transform: translateX(5px);
}

.modal-content {
  border-radius: 15px;
  border: none;
  font-family: 'Libre Baskerville', serif;
}

.modal-header {
  background: linear-gradient(135deg, hsl(41, 34%, 45%) 0%, hsl(41, 34%, 30%) 100%);
  color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 25px 30px;
  border: none;
}

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

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

.modal-body {
  padding: 35px;
}

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

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

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

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

.modal-body .project-details .detail-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.modal-body .project-details .detail-item:last-child {
  border-bottom: none;
}

.modal-body .project-details .detail-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #333;
}

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

.modal-body .results-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.modal-body .results-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  color: #555;
  line-height: 1.6;
}

.modal-body .results-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(41, 34%, 45%);
  font-weight: bold;
  font-size: 1.2rem;
}

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

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

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

  .portfolio-filters {
    gap: 10px;
  }

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

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

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

  .portfolio-item-content h3 {
    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(41, 34%, 30%);
  margin-bottom: 1rem;
  text-align: center;
}

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

.advantage-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 35px 25px;
  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(41, 34%, 45%) 0%, hsl(41, 34%, 70%) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

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

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(41, 34%, 45%) 0%, hsl(41, 34%, 30%) 100%);
  border-radius: 50%;
  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);
  background: linear-gradient(135deg, hsl(41, 34%, 30%) 0%, hsl(41, 34%, 45%) 100%);
}

.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(41, 34%, 30%);
  margin-bottom: 15px;
  text-align: center;
}

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

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

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(41, 34%, 98%) 0%, hsl(41, 34%, 95%) 100%);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: hsl(41, 34%, 70%);
    opacity: 0.05;
    border-radius: 50%;
}

.statistics-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: hsl(41, 34%, 45%);
    opacity: 0.03;
    border-radius: 50%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(41, 34%, 30%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(41, 34%, 45%);
}

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

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

.stat-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(41, 34%, 40%), hsl(41, 34%, 50%));
}

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

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

.stat-label {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-context {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .stat-card {
        margin-bottom: 25px;
        padding: 35px 20px;
    }
    
    .stat-number {
        font-size: 2.3rem;
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon i {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

footer {
  background: linear-gradient(135deg, hsl(41, 34%, 30%) 0%, hsl(41, 34%, 45%) 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: #ffffff;
  margin-bottom: 25px;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

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

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

footer a:hover {
  color: hsl(41, 34%, 70%);
  transform: translateX(5px);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.contact-info {
  list-style: none;
  padding: 0;
}

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

.contact-info i {
  color: hsl(41, 34%, 70%);
  margin-right: 12px;
  margin-top: 4px;
  font-size: 1.1rem;
}

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

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.policy-links a {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 15px;
  font-size: 0.9rem;
}

.policy-links a:hover {
  color: hsl(41, 34%, 70%);
  transform: translateX(0);
}

address {
  font-style: normal;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 30px 0;
  border-top: 4px solid hsl(41, 34%, 45%);
  animation: slideUp 0.5s ease;
}

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

.cookie-content h4 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(41, 34%, 30%);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.cookie-content p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

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

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

.cookie-category h6 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(41, 34%, 30%);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1rem;
}

.cookie-category p {
  color: #555555;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-category .badge {
  font-size: 0.7rem;
  padding: 4px 8px;
  margin-left: 8px;
  font-weight: 500;
}

.badge-required {
  background-color: hsl(41, 34%, 45%);
  color: #ffffff;
}

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

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

.btn-accept-all {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-accept-all:hover {
  background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  color: #ffffff;
}

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

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

.btn-manage {
  background: transparent;
  color: hsl(41, 34%, 30%);
  border: 2px solid hsl(41, 34%, 45%);
  padding: 12px 30px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

.btn-manage:hover {
  background: hsl(41, 34%, 45%);
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

  .cookie-buttons .btn-accept-all,
  .cookie-buttons .btn-reject-optional,
  .cookie-buttons .btn-manage {
    width: 100%;
    text-align: center;
  }

  footer {
    padding: 40px 0 20px;
  }

  footer h5 {
    margin-top: 30px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .cookie-content h4 {
    font-size: 1.3rem;
  }

  .cookie-content p {
    font-size: 0.9rem;
  }
}

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

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

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

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

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid hsl(41, 34%, 45%);
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

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

.contact-info-item h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    color: hsl(41, 34%, 30%);
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.contact-info-item a {
    color: hsl(41, 34%, 45%);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info-item a:hover {
    color: hsl(41, 34%, 30%);
    text-decoration: underline;
}

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

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

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

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

.form-control:focus, .form-select:focus {
    border-color: hsl(41, 34%, 45%);
    box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.15);
    outline: none;
}

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

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

.btn-submit {
    background: hsl(41, 34%, 45%);
    color: #ffffff;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: hsl(41, 34%, 30%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: hsl(41, 34%, 70%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: hsl(41, 34%, 30%);
}

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

.hours-list li {
    padding: 0.4rem 0;
    color: #333;
    font-size: 0.95rem;
}

.hours-list li strong {
    color: hsl(41, 34%, 30%);
    font-weight: 600;
}

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

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

@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(41, 34%, 45%);
    --secondary-color: hsl(41, 34%, 30%);
    --accent-color: hsl(41, 34%, 70%);
  }
  
  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: #2c2c2c;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
  }
  
  .policy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 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(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
  }
  
  .policy-content li {
    margin-bottom: 0.8rem;
  }
  
  .effective-date {
    background-color: var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  .cookie-table {
    background-color: #f9f9f9;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, hsl(41, 34%, 85%) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2.5rem;
    border-left: 5px solid var(--primary-color);
  }
  
  .contact-box h3 {
    color: var(--secondary-color);
    margin-top: 0;
  }
  
  .highlight-box {
    background-color: #fff9f0;
    border-left: 4px solid var(--primary-color);
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 4px;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    margin: 2rem 0;
  }

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

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

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

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

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

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

.accordion-button {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: hsl(41, 34%, 30%);
    background-color: #ffffff;
    padding: 1.5rem 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: hsl(41, 34%, 70%);
    color: hsl(41, 34%, 30%);
    box-shadow: none;
}

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

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23806f4c'%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-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='%23806f4c'%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 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    padding: 1.5rem;
    background-color: #ffffff;
}

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

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

.accordion-body strong {
    color: hsl(41, 34%, 30%);
    font-weight: 600;
}

@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: 1.2rem 1rem;
    }

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(41, 34%, 45%) 0%, hsl(41, 34%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.newsletter-input-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.newsletter-email-input:focus {
    outline: none;
    border-color: hsl(41, 34%, 70%);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.newsletter-submit-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.newsletter-benefit-icon::before {
    content: '✓';
    color: hsl(41, 34%, 30%);
    font-weight: bold;
    font-size: 14px;
}

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

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

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

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

    .newsletter-email-input {
        min-width: 100%;
    }

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

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

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

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

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

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

:root {
  --primary: hsl(41, 34%, 45%);
  --secondary: hsl(41, 34%, 30%);
  --accent: hsl(41, 34%, 70%);
}

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

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

.hero-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

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

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

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

.advantages-list li {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #333;
  padding: 0.8rem 0;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.6;
}

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

.advantages-list li i {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.9rem;
  z-index: 1;
}

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

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

.btn-hero-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

.btn-hero-secondary:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  .hero-image-wrapper {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
  
  .hero-section h2 {
    font-size: 1.1rem;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
}

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

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

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

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

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

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

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: hsl(41, 34%, 70%);
}

.service-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(41, 34%, 45%) 0%, hsl(41, 34%, 30%) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #ffffff;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, hsl(41, 34%, 30%) 0%, hsl(41, 34%, 45%) 100%);
}

.service-content {
  flex: 1;
}

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

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

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

.service-price {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: hsl(41, 34%, 45%);
}

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

.service-term {
  font-size: 0.9rem;
  color: #666;
  background: hsl(41, 34%, 95%);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
}

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

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

  .service-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

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

  .service-footer {
    justify-content: center;
  }

  .service-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .services-header h2 {
    font-size: 1.9rem;
  }

  .service-price {
    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');

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

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

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

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

  .offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, hsl(41, 34%, 45%) 0%, hsl(41, 34%, 30%) 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

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

  .offer-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid hsl(41, 34%, 70%);
    position: relative;
  }

  .offer-description {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 35px;
  }

  .deadline-block {
    background: linear-gradient(135deg, hsl(41, 34%, 45%) 0%, hsl(41, 34%, 30%) 100%);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

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

  .deadline-date {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .calendar-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(41, 34%, 45%);
    font-size: 1.8rem;
  }

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

  .benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid hsl(41, 34%, 85%);
    font-size: 1.05rem;
    color: #333;
  }

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

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

  .discount-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 20px 30px;
    border-radius: 50%;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    transform: rotate(15deg);
    text-align: center;
    line-height: 1.2;
  }

  .discount-badge small {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 5px;
  }

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

  .offer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #fff;
    background: linear-gradient(135deg, hsl(41, 34%, 40%) 0%, hsl(41, 34%, 25%) 100%);
  }

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

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

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

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

    .deadline-date {
      font-size: 2rem;
      flex-direction: column;
      gap: 10px;
    }

    .discount-badge {
      top: -15px;
      right: 20px;
      padding: 15px 20px;
      font-size: 1.2rem;
    }

    .benefits-list li {
      font-size: 0.95rem;
    }

    .offer-cta {
      padding: 15px 35px;
      font-size: 1rem;
    }
  }

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

  #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: #222;
    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(41, 34%, 45%);
    border-radius: 2px;
  }

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

  .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 12px 35px rgba(0, 0, 0, 0.15);
  }

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

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

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

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

  .blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
  }

  .blog-date,
  .blog-reading-time {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blog-date svg,
  .blog-reading-time svg {
    width: 16px;
    height: 16px;
    fill: hsl(41, 34%, 45%);
  }

  .blog-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 16px;
    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(41, 34%, 45%);
  }

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

  .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(41, 34%, 45%);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
  }

  .blog-read-more:hover {
    gap: 12px;
    color: hsl(41, 34%, 30%);
  }

  .blog-read-more svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

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

  .btn-view-all {
    display: inline-block;
    padding: 16px 48px;
    background: hsl(41, 34%, 45%);
    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(41, 34%, 30%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px 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-content {
      padding: 24px;
    }

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

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

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

  #credentials {
    padding: 60px 0;
    background-color: #f8f9fa;
    font-family: 'Libre Baskerville', serif;
  }

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

  #credentials .credential-card {
    background: #fff;
    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%;
    margin-bottom: 20px;
  }

  #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: 15px;
  }

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

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

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

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

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

.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;
  color: hsl(41, 34%, 30%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials-section .section-subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border-left: 4px solid hsl(41, 34%, 70%);
}

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(41, 34%, 45%) 0%, hsl(41, 34%, 30%) 100%);
  color: #ffffff;
  border-left: 4px solid #ffffff;
}

.testimonial-card.featured .customer-name,
.testimonial-card.featured .customer-location,
.testimonial-card.featured .testimonial-text {
  color: #ffffff;
}

.testimonial-card.featured .star-rating i {
  color: #ffd700;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: hsl(41, 34%, 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: #ffffff;
  color: hsl(41, 34%, 45%);
}

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

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

.customer-location {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.star-rating {
  margin-bottom: 15px;
}

.star-rating i {
  color: #ffd700;
  font-size: 1.1rem;
  margin-right: 3px;
}

.star-rating i.text-muted {
  color: #ddd !important;
}

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

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

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

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

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

.testimonial-stats {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.stat-number {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(41, 34%, 45%);
  margin-bottom: 10px;
}

.stat-label {
  color: #666;
  font-size: 1rem;
}

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

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

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

.disclaimer-icon {
  width: 70px;
  height: 70px;
  background: hsl(41, 34%, 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.disclaimer-icon i {
  font-size: 36px;
  color: hsl(41, 34%, 30%);
}

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

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

.disclaimer-text strong {
  color: hsl(41, 34%, 30%);
  font-weight: 600;
}

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

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

@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(41, 34%, 45%);
    --secondary-color: hsl(41, 34%, 30%);
    --accent-color: hsl(41, 34%, 70%);
  }
  
  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: #2c2c2c;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-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.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--accent-color);
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .info-box {
    background-color: hsl(41, 34%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-section {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
  }
  
  .contact-section h3 {
    color: var(--secondary-color);
    margin-top: 0;
  }
  
  .last-updated {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-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-color: hsl(41, 34%, 45%);
    --secondary-color: hsl(41, 34%, 30%);
    --accent-color: hsl(41, 34%, 70%);
  }

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

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

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

  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
  }

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

  .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: hsl(41, 34%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
  }

  .contact-section {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
  }

  .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
  }

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

@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(41, 34%, 45%);
    --secondary: hsl(41, 34%, 30%);
    --accent: hsl(41, 34%, 70%);
  }

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

  .thank-you-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
  }

  .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
  }

  .success-icon svg {
    width: 60px;
    height: 60px;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmark 0.8s 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-weight: 700;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
  }

  .thank-you-message {
    font-size: 1.125rem;
    color: hsl(0, 0%, 40%);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
  }

  .thank-you-message strong {
    color: var(--secondary);
    font-weight: 700;
  }

  .info-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    animation: fadeInUp 0.6s ease-out 0.8s backwards;
  }

  .info-list li {
    font-size: 1rem;
    color: hsl(0, 0%, 30%);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    text-align: left;
  }

  .info-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.25rem;
  }

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

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

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

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

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

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

    .thank-you-container {
      padding: 2rem 1.5rem;
    }

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

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

    .btn-home {
      padding: 0.75rem 2rem;
      font-size: 1rem;
    }
  }