:root {
            --primary-color: hsl(72, 42%, 36%);
            --secondary-color: hsl(72, 42%, 21%);
            --accent-color: hsl(72, 42%, 61%);
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            color: #333;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #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.5rem;
            color: var(--primary-color);
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .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(0, 0, 0, 0.75)' 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 15px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

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

.about-section h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(72, 42%, 21%);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-section h3 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(72, 42%, 36%);
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

.about-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  margin-top: 4rem;
}

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

.about-image {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

.values-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.values-list li {
  padding: 1rem 0 1rem 3rem;
  position: relative;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  border-left: 3px solid hsl(72, 42%, 61%);
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.values-list li:before {
  content: "✓";
  position: absolute;
  left: 1rem;
  color: hsl(72, 42%, 36%);
  font-weight: bold;
  font-size: 1.3rem;
}

.stats-box {
  background: hsl(72, 42%, 36%);
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.stats-box h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stats-box p {
  font-size: 1.1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h2 {
    font-size: 2.2rem;
  }
  
  .about-section h3 {
    font-size: 1.5rem;
  }
  
  .about-intro {
    font-size: 1.05rem;
  }
  
  .values-list li {
    padding-left: 2.5rem;
  }
}

@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-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(72, 42%, 21%);
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

  .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 5px 20px 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-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
  }

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

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

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

  .portfolio-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(72, 42%, 21%);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .portfolio-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .portfolio-link {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: hsl(72, 42%, 36%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .portfolio-link:hover {
    color: hsl(72, 42%, 21%);
    gap: 12px;
  }

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

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

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

  .modal-body {
    padding: 35px;
  }

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

  .project-detail-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(72, 42%, 21%);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
  }

  .project-detail-text {
    color: #555;
    line-height: 1.8;
    font-size: 0.98rem;
  }

  .project-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
  }

  .spec-item {
    text-align: center;
  }

  .spec-label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .spec-value {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: hsl(72, 42%, 36%);
    font-size: 1.3rem;
  }

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

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

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

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

    .filter-buttons {
      gap: 10px;
    }

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

    .modal-body {
      padding: 25px;
    }

    .project-specs {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  }

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

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

.advantages-section .section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(72, 42%, 21%);
    text-align: center;
    margin-bottom: 20px;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-color: hsl(72, 42%, 61%);
}

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

.advantage-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, hsl(72, 42%, 36%), hsl(72, 42%, 61%));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(110, 125, 70, 0.25);
}

.advantage-card:hover .advantage-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(110, 125, 70, 0.4);
}

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

.advantage-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(72, 42%, 21%);
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantages-section .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .advantages-section .section-title {
        font-size: 1.9rem;
    }
    
    .advantages-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .advantage-icon {
        width: 65px;
        height: 65px;
    }
    
    .advantage-icon i {
        font-size: 1.7rem;
    }
    
    .advantage-title {
        font-size: 1.25rem;
    }
}

@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(72, 42%, 36%), hsl(72, 42%, 61%));
  }

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

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

  .statistics-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(72, 42%, 36%);
  }

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

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

  .stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    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: 4px;
    background: hsl(72, 42%, 36%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: hsl(72, 42%, 61%);
  }

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

  .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(72, 42%, 36%), hsl(72, 42%, 61%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

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

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

  .stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(72, 42%, 36%);
    margin: 15px 0 10px;
    line-height: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

footer {
  background: linear-gradient(135deg, hsl(72, 42%, 21%) 0%, hsl(72, 42%, 16%) 100%);
  color: #f8f9fa;
  padding: 4rem 0 1.5rem;
  font-family: 'Libre Baskerville', serif;
  margin-top: 5rem;
}

footer h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(72, 42%, 61%);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

footer p, footer ul, footer a {
  font-size: 0.95rem;
  line-height: 1.8;
}

footer .company-description {
  color: #e9ecef;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

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

footer ul li {
  margin-bottom: 0.75rem;
}

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

footer a:hover {
  color: hsl(72, 42%, 61%);
  transform: translateX(5px);
}

footer .contact-info a {
  color: #f8f9fa;
  font-weight: 500;
}

footer .contact-info a:hover {
  color: hsl(72, 42%, 61%);
  transform: translateX(0);
}

footer .contact-info i {
  color: hsl(72, 42%, 61%);
  margin-right: 0.5rem;
  width: 20px;
}

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

.footer-policies {
  margin-top: 1rem;
}

.footer-policies a {
  color: #adb5bd;
  margin: 0 1rem;
  font-size: 0.85rem;
}

.footer-policies a:hover {
  color: hsl(72, 42%, 61%);
  transform: translateX(0);
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(72, 42%, 36%) 0%, hsl(72, 42%, 28%) 100%);
  color: #ffffff;
  padding: 2rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-family: 'Libre Baskerville', serif;
  animation: slideUp 0.5s ease-out;
}

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

#cookieNotice h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

#cookieNotice p {
  color: #f8f9fa;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cookie-categories {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.cookie-category {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-category strong {
  color: hsl(72, 42%, 75%);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.25rem;
  font-family: 'Quicksand', sans-serif;
}

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

.cookie-category .badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  margin-left: 0.5rem;
  font-weight: 500;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cookie-buttons .btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-buttons .btn-accept {
  background: hsl(72, 42%, 61%);
  color: #1a1a1a;
}

.cookie-buttons .btn-accept:hover {
  background: hsl(72, 42%, 70%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-buttons .btn-settings {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-buttons .btn-settings:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1rem;
  }
  
  footer h5 {
    margin-top: 2rem;
    font-size: 1.1rem;
  }
  
  footer h5:first-child {
    margin-top: 0;
  }
  
  .footer-policies a {
    display: block;
    margin: 0.5rem 0;
  }
  
  #cookieNotice {
    padding: 1.5rem 0;
  }
  
  #cookieNotice h4 {
    font-size: 1.25rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

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

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Libre Baskerville, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(72, 42%, 36%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Quicksand, sans-serif; color: hsl(72, 42%, 21%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(72, 42%, 36%); }
.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(72, 42%, 21%); font-family: Quicksand, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(72, 42%, 21%); font-family: Quicksand, sans-serif; }
.blog-article a { color: hsl(72, 42%, 36%); }
.blog-article a:hover { color: hsl(72, 42%, 61%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(72, 42%, 36%); 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;
    color: hsl(72, 42%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

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

.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.contact-form-wrapper h3 {
    font-family: 'Quicksand', sans-serif;
    color: hsl(72, 42%, 21%);
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-form .form-label {
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

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

.contact-form .form-control:focus {
    border-color: hsl(72, 42%, 36%);
    box-shadow: 0 0 0 0.2rem rgba(114, 134, 71, 0.15);
    outline: none;
}

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

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

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

.contact-info-wrapper {
    background: hsl(72, 42%, 21%);
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
}

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

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: hsl(72, 42%, 36%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.contact-info-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: hsl(72, 42%, 61%);
    font-weight: 600;
}

.contact-info-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
}

.contact-info-content a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 5px;
}

.contact-info-content a:hover {
    color: hsl(72, 42%, 61%);
}

.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);
    font-size: 0.95rem;
    color: #f0f0f0;
}

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

.required-mark {
    color: hsl(72, 42%, 36%);
}

@media (max-width: 991px) {
    .contact-form-wrapper {
        margin-bottom: 30px;
    }
    
    .contact-info-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 25px;
    }
    
    .contact-form .btn-submit {
        padding: 12px 30px;
        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(72, 42%, 36%);
    --secondary-color: hsl(72, 42%, 21%);
    --accent-color: hsl(72, 42%, 61%);
  }

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

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

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

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

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

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

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

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

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

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

  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

  .info-box {
    background-color: hsl(72, 42%, 95%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

  .contact-details {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }

  .contact-details h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
  }

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

  .cookie-table {
    margin: 2rem 0;
  }

  .cookie-table table {
    border-color: var(--accent-color);
  }

  .cookie-table thead {
    background-color: var(--primary-color);
    color: white;
  }

  .cookie-table tbody tr:hover {
    background-color: hsl(72, 42%, 97%);
  }

  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-top: 1rem;
  }

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

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

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

  #faq .faq-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(72, 42%, 21%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

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

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

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

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

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

  #faq .accordion-button {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: hsl(72, 42%, 21%);
    background-color: #ffffff;
    padding: 25px 30px;
    border: none;
    transition: all 0.3s ease;
  }

  #faq .accordion-button:not(.collapsed) {
    background-color: hsl(72, 42%, 36%);
    color: #ffffff;
    box-shadow: none;
  }

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

  #faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23556B2F'%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");
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
  }

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

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

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

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

  #faq .accordion-body strong {
    color: hsl(72, 42%, 21%);
    font-weight: 700;
  }

  #faq .faq-contact-box {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: linear-gradient(135deg, hsl(72, 42%, 36%) 0%, hsl(72, 42%, 21%) 100%);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }

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

  #faq .faq-contact-text {
    color: #f8f9fa;
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.6;
  }

  #faq .faq-contact-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: hsl(72, 42%, 21%);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  #faq .faq-contact-btn:hover {
    background-color: hsl(72, 42%, 61%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }

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

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

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

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

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

    #faq .faq-contact-box {
      padding: 30px 20px;
      margin-top: 40px;
    }

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

    #faq .faq-contact-text {
      font-size: 1rem;
    }

    #faq .faq-contact-btn {
      padding: 12px 30px;
      font-size: 1rem;
    }
  }

.newsletter-section {
    background: linear-gradient(135deg, hsl(72, 42%, 36%) 0%, hsl(72, 42%, 21%) 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(255, 255, 255, 0.03);
    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-input {
    flex: 1;
    min-width: 250px;
    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: #333;
    transition: all 0.3s ease;
}

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

.newsletter-input::placeholder {
    color: #666;
}

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

.newsletter-submit:hover {
    background: hsl(72, 42%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-submit: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: #f8f9fa;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
}

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

.newsletter-benefit-icon::after {
    content: '✓';
    color: #222;
    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-input {
        min-width: 100%;
    }

    .newsletter-submit {
        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');

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

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: hsl(72, 42%, 61%);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(50%, -50%);
  }

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

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

  .hero-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    color: hsl(72, 42%, 36%);
    margin-bottom: 2rem;
    line-height: 1.4;
  }

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

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

  .hero-advantages li {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #222;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
  }

  .hero-advantages li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 1.5rem;
    height: 1.5rem;
    background: hsl(72, 42%, 36%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-advantages li i {
    position: absolute;
    left: 0.35rem;
    top: 0.65rem;
    color: #fff;
    font-size: 0.8rem;
  }

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

  .btn-hero-primary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background: hsl(72, 42%, 36%);
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .btn-hero-primary:hover {
    background: hsl(72, 42%, 21%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

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

  .btn-hero-secondary:hover {
    background: hsl(72, 42%, 36%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  .hero-image-wrapper {
    margin-top: 3rem;
    position: relative;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }

  .hero-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: hsl(72, 42%, 36%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

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

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

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

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

    .hero-advantages li {
      font-size: 0.95rem;
    }

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

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

    .hero-image-badge {
      font-size: 0.9rem;
      padding: 12px 20px;
      bottom: 15px;
      right: 15px;
    }
  }

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

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

.offer-section {
  padding: 80px 0;
  background: linear-gradient(135deg, hsl(72, 42%, 96%) 0%, hsl(72, 42%, 88%) 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

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

.offer-heading {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(72, 42%, 21%);
  margin-bottom: 24px;
  line-height: 1.2;
}

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

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

.deadline-block {
  background: linear-gradient(135deg, hsl(72, 42%, 61%) 0%, hsl(72, 42%, 51%) 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

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

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

.calendar-icon {
  font-size: 2.5rem;
  color: #fff;
}

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

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

.benefit-item:hover {
  background: hsl(72, 42%, 95%);
  transform: translateX(5px);
}

.benefit-icon {
  font-size: 1.5rem;
  color: hsl(72, 42%, 36%);
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  padding: 20px 35px;
  border-radius: 15px;
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 30px 0;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

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

.offer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  color: #fff;
  background: linear-gradient(135deg, hsl(72, 42%, 41%) 0%, hsl(72, 42%, 26%) 100%);
}

.offer-note {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .offer-section {
    padding: 60px 0;
  }
  
  .offer-heading {
    font-size: 2rem;
  }
  
  .offer-description {
    font-size: 1rem;
  }
  
  .offer-card {
    padding: 35px 25px;
  }
  
  .deadline-date {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .discount-badge {
    font-size: 2rem;
    padding: 15px 25px;
  }
  
  .benefit-item {
    padding: 15px;
  }
  
  .benefit-icon {
    font-size: 1.2rem;
    margin-right: 15px;
  }
  
  .benefit-text {
    font-size: 0.95rem;
  }
}

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

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

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

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

  .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: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }

  .credential-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
  }

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

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

    #credentials .section-subtitle {
      font-size: 0.95rem;
      margin-bottom: 35px;
    }

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

    .credential-icon {
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .credential-title {
      font-size: 1rem;
    }

    .credential-text {
      font-size: 0.8rem;
    }
  }

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

.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(72, 42%, 21%);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials-section .lead-text {
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.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(72, 42%, 61%);
}

.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(72, 42%, 36%), hsl(72, 42%, 61%));
  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-info {
  flex-grow: 1;
}

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

.testimonial-location {
  font-size: 0.9rem;
  color: #777;
}

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

.star {
  color: #ffc107;
  font-size: 1.1rem;
}

.star.empty {
  color: #ddd;
}

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

.testimonial-text strong {
  color: hsl(72, 42%, 21%);
  font-weight: 600;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(72, 42%, 36%) 0%, hsl(72, 42%, 21%) 100%);
  border-left: 4px solid hsl(72, 42%, 61%);
}

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

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

.testimonial-card.featured strong {
  color: hsl(72, 42%, 61%);
}

.testimonial-card.compact {
  padding: 25px;
  background: #f8f9fa;
  border-left: 3px solid hsl(72, 42%, 36%);
}

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

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

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

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

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

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

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

  #blog .section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(72, 42%, 21%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

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

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

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

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

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

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

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

  #blog .blog-meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

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

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

  #blog .blog-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: hsl(72, 42%, 21%);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  #blog .blog-card:hover .blog-title {
    color: hsl(72, 42%, 36%);
  }

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

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

  #blog .blog-link:hover {
    color: hsl(72, 42%, 21%);
    gap: 12px;
  }

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

  #blog .blog-link:hover::after {
    transform: translateX(4px);
  }

  #blog .view-all-container {
    text-align: center;
    margin-top: 50px;
  }

  #blog .btn-view-all {
    display: inline-block;
    padding: 15px 40px;
    background: hsl(72, 42%, 36%);
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid hsl(72, 42%, 36%);
  }

  #blog .btn-view-all:hover {
    background: hsl(72, 42%, 21%);
    border-color: hsl(72, 42%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

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

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

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

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

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

    #blog .blog-excerpt {
      font-size: 0.9rem;
    }
  }

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

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

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

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

  .services-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(72, 42%, 36%);
    border-radius: 2px;
  }

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

  .service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

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

  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    border-color: hsl(72, 42%, 36%);
  }

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

  .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(72, 42%, 36%) 0%, hsl(72, 42%, 21%) 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(72, 42%, 61%) 0%, hsl(72, 42%, 36%) 100%);
  }

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

  .service-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 18px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .service-price {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(72, 42%, 36%);
    text-align: center;
    margin-bottom: 15px;
  }

  .service-price-note {
    font-size: 0.85rem;
    color: #777;
    text-align: center;
    font-style: italic;
  }

  .service-terms {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-top: 60px;
    border-left: 5px solid hsl(72, 42%, 36%);
  }

  .service-terms h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
  }

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

  .service-terms li {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
  }

  .service-terms li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(72, 42%, 36%);
    font-weight: bold;
    font-size: 1.2rem;
  }

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

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

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

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

    .service-title {
      font-size: 1.2rem;
      min-height: auto;
    }

    .service-description {
      font-size: 0.9rem;
    }

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

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

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

  .disclaimer-icon-wrapper {
    text-align: center;
    margin-bottom: 30px;
  }

  .disclaimer-icon {
    font-size: 48px;
    color: hsl(72, 42%, 36%);
    opacity: 0.9;
  }

  .disclaimer-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(72, 42%, 21%);
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
  }

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

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

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

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

    .disclaimer-container {
      padding: 40px 25px;
      margin: 0 15px;
    }

    .disclaimer-title {
      font-size: 1.8rem;
      margin-bottom: 25px;
    }

    .disclaimer-icon {
      font-size: 40px;
    }

    .disclaimer-content {
      font-size: 0.95rem;
      line-height: 1.8;
    }
  }

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

    .disclaimer-container {
      padding: 30px 20px;
    }

    .disclaimer-title {
      font-size: 1.6rem;
    }

    .disclaimer-icon {
      font-size: 36px;
    }
  }

@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(72, 42%, 36%);
    --secondary-color: hsl(72, 42%, 21%);
    --accent-color: hsl(72, 42%, 61%);
  }

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

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

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

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

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

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

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

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

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

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

  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }

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

  .contact-box h3 {
    color: white !important;
    border-bottom: 2px solid white;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }

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

  .contact-box a {
    color: white;
    border-bottom: 1px solid white;
  }

  .contact-box a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
  }

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

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

@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(72, 42%, 36%);
    --secondary-color: hsl(72, 42%, 21%);
    --accent-color: hsl(72, 42%, 61%);
  }
  
  .policy-content {
    font-family: 'Libre Baskerville', serif;
    color: #2c3e50;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 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.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 3px;
  }
  
  .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 ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--accent-color);
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 700;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .contact-box h3 {
    color: white !important;
    margin-bottom: 1rem;
  }
  
  .contact-box p {
    margin-bottom: 0.5rem;
  }
  
  .contact-box a {
    color: white;
    border-bottom-color: white;
  }
  
  .effective-date {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 5px;
  }
  
  .section-card {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
  }