:root {
            --primary-color: hsl(103, 39%, 37%);
            --secondary-color: hsl(103, 39%, 22%);
            --accent-color: hsl(103, 39%, 62%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: #222;
        }
        
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-toggler {
            border: 2px solid var(--primary-color);
            padding: 0.5rem 0.75rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(103, 139, 77, 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(103, 139, 77, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: #fff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem;
            }
        }

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

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

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

  #about .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(103, 39%, 22%);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

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

  #about .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 25px;
  }

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

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

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

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

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

  #about .about-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(103, 39%, 22%);
    margin-bottom: 20px;
  }

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

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

  #about .values-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(103, 39%, 22%);
    text-align: center;
    margin-bottom: 40px;
  }

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

  #about .value-card {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid hsl(103, 39%, 37%);
    transition: all 0.3s ease;
  }

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

  #about .value-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(103, 39%, 22%);
    margin-bottom: 12px;
  }

  #about .value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
  }

  #about .mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  #about .mission-box,
  #about .vision-box {
    padding: 35px;
    border-radius: 12px;
    position: relative;
  }

  #about .mission-box {
    background: linear-gradient(135deg, hsl(103, 39%, 37%) 0%, hsl(103, 39%, 22%) 100%);
    color: #ffffff;
  }

  #about .vision-box {
    background: linear-gradient(135deg, hsl(103, 39%, 62%) 0%, hsl(103, 39%, 37%) 100%);
    color: #ffffff;
  }

  #about .mission-box h4,
  #about .vision-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
  }

  #about .mission-box p,
  #about .vision-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
  }

  @media (max-width: 992px) {
    #about .about-content {
      flex-direction: column;
    }

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

    #about .values-section {
      padding: 30px 20px;
    }
  }

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

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

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

    #about .about-text h3 {
      font-size: 1.5rem;
    }
  }

.portfolio-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Source Sans Pro', sans-serif;
}

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

.portfolio-section .lead-text {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

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

.filter-btn {
    padding: 10px 25px;
    border: 2px solid hsl(103, 39%, 37%);
    background: #ffffff;
    color: hsl(103, 39%, 37%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: hsl(103, 39%, 37%);
    color: #ffffff;
    transform: translateY(-2px);
}

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

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

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

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

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

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

.portfolio-category {
    display: inline-block;
    padding: 5px 15px;
    background: hsl(103, 39%, 62%);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.view-details {
    display: inline-flex;
    align-items: center;
    color: hsl(103, 39%, 37%);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-details:hover {
    color: hsl(103, 39%, 22%);
    gap: 8px;
}

.view-details::after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.view-details:hover::after {
    margin-left: 10px;
}

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

.modal-header {
    background: hsl(103, 39%, 37%);
    color: #ffffff;
    border-radius: 12px 12px 0 0;
    padding: 20px 30px;
}

.modal-header h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

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

.modal-body {
    padding: 30px;
}

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

.detail-section {
    margin-bottom: 25px;
}

.detail-section h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.detail-section p,
.detail-section ul {
    color: #555;
    line-height: 1.7;
    font-size: 0.98rem;
}

.detail-section ul {
    padding-left: 20px;
}

.detail-section ul li {
    margin-bottom: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.info-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid hsl(103, 39%, 37%);
}

.info-item strong {
    color: #222;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.info-item span {
    color: #555;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-section h2 {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .portfolio-section h2 {
        font-size: 1.75rem;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .portfolio-content {
        padding: 20px;
    }
}

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

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(103, 39%, 37%) 0%, hsl(103, 39%, 62%) 100%);
}

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

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

.advantages-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(103, 39%, 37%);
}

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

.advantage-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s 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(103, 39%, 37%) 0%, hsl(103, 39%, 62%) 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(103, 39%, 62%);
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(79, 120, 64, 0.3);
}

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

.advantage-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 18px;
    text-align: center;
    transition: color 0.3s ease;
}

.advantage-card:hover h3 {
    color: hsl(103, 39%, 37%);
}

.advantage-card p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

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

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

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

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

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Source+Sans+Pro:wght@400;600&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(103, 39%, 37%) 0%, hsl(103, 39%, 62%) 100%);
  }

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

  #statistics .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  #statistics .section-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

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

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

  #statistics .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(103, 39%, 37%) 0%, hsl(103, 39%, 62%) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: hsl(103, 39%, 62%);
  }

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

  #statistics .stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, hsl(103, 39%, 37%) 0%, hsl(103, 39%, 62%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  #statistics .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(89, 142, 64, 0.3);
  }

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

  #statistics .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: hsl(103, 39%, 37%);
    margin-bottom: 8px;
    line-height: 1;
  }

  #statistics .stat-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #555;
    font-weight: 600;
    line-height: 1.4;
  }

  #statistics .stat-context {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.85rem;
    color: #777;
    margin-top: 8px;
    font-style: italic;
  }

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

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

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

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

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

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

    #statistics .stat-icon i {
      font-size: 28px;
    }
  }

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

    #statistics .stats-grid {
      grid-template-columns: 1fr;
    }
  }

footer {
  background: linear-gradient(135deg, hsl(103, 39%, 22%) 0%, hsl(103, 39%, 27%) 100%);
  color: #f8f9fa;
  padding: 60px 0 20px;
  margin-top: 80px;
  font-family: 'Source Sans Pro', sans-serif;
}

footer h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

footer a {
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: hsl(103, 39%, 62%);
  padding-left: 5px;
}

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

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

footer .contact-info i {
  color: hsl(103, 39%, 62%);
  margin-right: 10px;
  width: 20px;
}

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

footer .company-description {
  margin-bottom: 25px;
  line-height: 1.8;
  color: #e0e0e0;
}

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

footer .contact-item i {
  margin-top: 3px;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 25px 0;
  border-top: 3px solid hsl(103, 39%, 37%);
  animation: slideUp 0.4s ease-out;
}

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

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

#cookieNotice h4 {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

#cookieNotice .cookie-category {
  margin-bottom: 12px;
  padding: 10px;
  background: #ffffff;
  border-radius: 5px;
  border-left: 3px solid hsl(103, 39%, 37%);
}

#cookieNotice .cookie-category strong {
  color: #222;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

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

#cookieNotice .cookie-category.required {
  border-left-color: hsl(103, 39%, 37%);
}

#cookieNotice .cookie-category.optional {
  border-left-color: #6c757d;
}

#cookieNotice .btn-accept-all {
  background: hsl(103, 39%, 37%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-right: 10px;
  font-size: 0.95rem;
}

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

#cookieNotice .btn-reject {
  background: #6c757d;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-right: 10px;
  font-size: 0.95rem;
}

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

#cookieNotice .btn-manage {
  background: transparent;
  color: hsl(103, 39%, 37%);
  border: 2px solid hsl(103, 39%, 37%);
  padding: 10px 28px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
}

#cookieNotice .btn-manage:hover {
  background: hsl(103, 39%, 37%);
  color: #ffffff;
  transform: translateY(-2px);
}

#cookieNotice .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

@media (max-width: 768px) {
  #cookieNotice {
    padding: 20px 0;
  }
  
  #cookieNotice .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  footer {
    padding: 40px 0 20px;
  }
}

.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: Source Sans Pro, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(103, 39%, 37%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Montserrat, sans-serif; color: hsl(103, 39%, 22%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(103, 39%, 37%); }
.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(103, 39%, 22%); font-family: Montserrat, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(103, 39%, 22%); font-family: Montserrat, sans-serif; }
.blog-article a { color: hsl(103, 39%, 37%); }
.blog-article a:hover { color: hsl(103, 39%, 62%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(103, 39%, 37%); 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: 'Source Sans Pro', sans-serif;
}

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

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

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

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    border-left: 4px solid hsl(103, 39%, 37%);
}

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

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

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

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

.contact-info-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.contact-info-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.contact-info-content a {
    color: hsl(103, 39%, 37%);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info-content a:hover {
    color: hsl(103, 39%, 22%);
}

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

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

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

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

.form-group label span {
    color: hsl(103, 39%, 37%);
}

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

.form-control:focus {
    border-color: hsl(103, 39%, 37%);
    box-shadow: 0 0 0 0.2rem rgba(103, 148, 77, 0.15);
    outline: none;
}

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

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

.submit-btn {
    background: hsl(103, 39%, 37%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.submit-btn:hover {
    background: hsl(103, 39%, 22%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 148, 77, 0.3);
}

.working-hours-box {
    background: hsl(103, 39%, 62%);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.working-hours-box h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.working-hours-box p {
    color: #ffffff;
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

@media (max-width: 576px) {
    .contact-section .section-title {
        font-size: 1.75rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 25px 20px;
    }
    
    .contact-info-item {
        margin-bottom: 25px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(103, 39%, 37%);
    --secondary-color: hsl(103, 39%, 22%);
    --accent-color: hsl(103, 39%, 62%);
  }
  
  .policy-content {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
  }
  
  .policy-content li {
    margin-bottom: 0.5rem;
  }
  
  .intro-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .cookie-type-card {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-box {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-box a {
    color: var(--accent-color);
  }
  
  .contact-box a:hover {
    color: white;
  }
  
  .last-updated {
    font-style: italic;
    color: #6c757d;
    margin-top: 1rem;
  }

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

  .faq-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: hsl(103, 39%, 22%);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

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

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

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

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

  .faq-accordion .accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #222;
    background-color: #ffffff;
    padding: 1.5rem 1.75rem;
    border: none;
    transition: all 0.3s ease;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(103, 39%, 37%);
    color: #ffffff;
    box-shadow: none;
  }

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

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

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

  .faq-accordion .accordion-body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    padding: 1.5rem 1.75rem;
    background-color: #fafafa;
  }

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

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

  .faq-accordion .accordion-body strong {
    color: hsl(103, 39%, 22%);
    font-weight: 600;
  }

  .faq-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: hsl(103, 39%, 37%);
  }

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

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

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

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

.newsletter-section {
  background: linear-gradient(135deg, hsl(103, 39%, 37%) 0%, hsl(103, 39%, 22%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

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

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

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

.newsletter-description {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.125rem;
  color: #f8f9fa;
  margin-bottom: 40px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  font-family: 'Source Sans Pro', sans-serif;
  padding: 16px 20px;
  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-input:focus {
  outline: none;
  border-color: hsl(103, 39%, 62%);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.newsletter-submit {
  font-family: 'Montserrat', sans-serif;
  padding: 16px 40px;
  font-size: 1.125rem;
  font-weight: 600;
  background: hsl(103, 39%, 62%);
  color: #222;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-submit:hover {
  background: hsl(103, 39%, 52%);
  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: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

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

.benefit-icon {
  width: 20px;
  height: 20px;
  background: hsl(103, 39%, 62%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon::after {
  content: '✓';
  color: #222;
  font-weight: bold;
  font-size: 12px;
}

@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
  }
  
  .newsletter-input {
    flex: 1;
  }
  
  .newsletter-submit {
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-heading {
    font-size: 2rem;
  }
  
  .newsletter-description {
    font-size: 1rem;
  }
  
  .newsletter-benefits {
    gap: 15px;
  }
  
  .benefit-item {
    font-size: 0.875rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Source+Sans+Pro:wght@400;600&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(103, 39%, 62%, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
  }

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

  .hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: hsl(103, 39%, 22%);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .hero-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: hsl(103, 39%, 37%);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }

  .hero-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
  }

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

  .advantages-list li {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.05rem;
    color: #222;
    padding: 0.9rem 0;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(103, 139, 87, 0.1);
  }

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

  .advantages-list li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(103, 39%, 37%);
    font-size: 1.3rem;
    font-weight: bold;
  }

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

  .btn-hero-primary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: hsl(103, 39%, 37%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(103, 39%, 37%);
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(103, 139, 87, 0.2);
  }

  .btn-hero-primary:hover {
    background: hsl(103, 39%, 22%);
    border-color: hsl(103, 39%, 22%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 139, 87, 0.3);
    color: #ffffff;
  }

  .btn-hero-secondary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: transparent;
    color: hsl(103, 39%, 37%);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(103, 39%, 37%);
    font-size: 1.05rem;
  }

  .btn-hero-secondary:hover {
    background: hsl(103, 39%, 37%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 139, 87, 0.25);
  }

  .hero-image-wrapper {
    position: relative;
    margin-top: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }

  .hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
  }

  .hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }

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

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

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

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

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

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

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

    .hero-image-wrapper {
      margin-top: 2rem;
    }
  }

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

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

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

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

.services-section .lead-text {
    color: #555;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.nav-tabs {
    border-bottom: 2px solid hsl(103, 39%, 37%);
    margin-bottom: 3rem;
    justify-content: center;
}

.nav-tabs .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #555;
    border: none;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-tabs .nav-link:hover {
    color: hsl(103, 39%, 37%);
    border: none;
}

.nav-tabs .nav-link.active {
    color: hsl(103, 39%, 37%);
    background: transparent;
    border: none;
    border-bottom: 3px solid hsl(103, 39%, 37%);
}

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

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(103, 39%, 37%) 0%, hsl(103, 39%, 22%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(103, 39%, 62%) 0%, hsl(103, 39%, 37%) 100%);
    transform: rotate(360deg);
}

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

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.service-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: hsl(103, 39%, 37%);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-terms {
    color: #777;
    font-size: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.tab-content {
    animation: fadeIn 0.5s ease-in;
}

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

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
    
    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

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

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

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

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

.blog-preview .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

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

.blog-preview .section-subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-top: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

.blog-meta-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.85rem;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-meta-item i {
  color: hsl(103, 39%, 37%);
  font-size: 0.9rem;
}

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

.blog-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: hsl(103, 39%, 37%);
}

.blog-card-excerpt {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.blog-card-link {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(103, 39%, 37%);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.blog-card-link:hover {
  color: hsl(103, 39%, 22%);
  gap: 12px;
}

.blog-card-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

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

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

.btn-view-all {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: hsl(103, 39%, 37%);
  border: none;
  padding: 16px 45px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-view-all:hover {
  background: hsl(103, 39%, 22%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.btn-view-all i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-view-all:hover i {
  transform: translateX(5px);
}

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

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

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

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

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

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

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

  .blog-card-excerpt {
    font-size: 0.95rem;
  }

  .blog-cta {
    margin-top: 40px;
  }

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

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

  .blog-card-meta {
    flex-direction: column;
    gap: 8px;
  }

  .blog-meta-item {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

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

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

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

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  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(103, 39%, 37%);
}

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

.testimonial-card.style-2 {
  border-left: none;
  border-top: 4px solid hsl(103, 39%, 62%);
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.testimonial-card.style-3 {
  border-left: none;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(103, 39%, 37%) 0%, hsl(103, 39%, 62%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  flex-shrink: 0;
}

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

.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

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

.testimonial-rating {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

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

.star.empty {
  color: #ddd;
}

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

.testimonial-text.short {
  font-size: 1.05rem;
  font-weight: 500;
}

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

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

.testimonial-highlight {
  background: hsl(103, 39%, 95%);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 3px solid hsl(103, 39%, 37%);
  margin-bottom: 2rem;
}

.testimonial-highlight .testimonial-text {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.rating-summary {
  background: #ffffff;
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.rating-summary h3 {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.rating-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.rating-average {
  text-align: center;
}

.rating-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: hsl(103, 39%, 37%);
  line-height: 1;
}

.rating-bars {
  flex-grow: 1;
  max-width: 400px;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.rating-bar-label {
  font-size: 0.9rem;
  color: #666;
  min-width: 60px;
}

.rating-bar-bg {
  flex-grow: 1;
  height: 8px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, hsl(103, 39%, 37%) 0%, hsl(103, 39%, 62%) 100%);
  border-radius: 10px;
  transition: width 0.5s ease;
}

.rating-bar-percent {
  font-size: 0.85rem;
  color: #666;
  min-width: 40px;
  text-align: right;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .rating-stats {
    gap: 2rem;
  }
  
  .rating-number {
    font-size: 2.5rem;
  }
}

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

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

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

.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: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

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

.offer-section {
  background: linear-gradient(135deg, hsl(103, 39%, 37%) 0%, hsl(103, 39%, 22%) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.offer-description {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: #f8f9fa;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
}

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

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

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

.deadline-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  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;
  font-size: 28px;
  color: hsl(103, 39%, 37%);
}

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

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

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

.benefit-icon {
  width: 45px;
  height: 45px;
  background: hsl(103, 39%, 37%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 20px;
}

.benefit-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding-top: 8px;
}

.discount-highlight {
  background: hsl(103, 39%, 37%);
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
}

.discount-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.offer-cta-btn {
  display: inline-block;
  background: hsl(103, 39%, 37%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 3px solid hsl(103, 39%, 37%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-cta-btn:hover {
  background: hsl(103, 39%, 22%);
  border-color: hsl(103, 39%, 22%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

  .offer-heading {
    font-size: 36px;
  }

  .offer-description {
    font-size: 16px;
  }

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

  .deadline-date {
    font-size: 32px;
    flex-direction: column;
  }

  .discount-text {
    font-size: 24px;
  }

  .benefit-item {
    padding: 15px;
  }

  .benefit-text {
    font-size: 15px;
  }

  .offer-cta-btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 16px;
  }
}

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  font-family: 'Source Sans Pro', sans-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(103, 39%, 37%);
}

.disclaimer-icon {
  font-size: 48px;
  color: hsl(103, 39%, 37%);
  margin-bottom: 25px;
  display: inline-block;
}

.disclaimer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
  text-align: center;
}

.disclaimer-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  text-align: left;
  margin-bottom: 0;
}

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

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

@media (max-width: 480px) {
  .disclaimer-title {
    font-size: 1.6rem;
  }
  
  .disclaimer-icon {
    font-size: 36px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

  :root {
    --primary-color: hsl(103, 39%, 37%);
    --secondary-color: hsl(103, 39%, 22%);
    --accent-color: hsl(103, 39%, 62%);
  }

  .policy-content {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.8;
  }

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

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

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

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

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

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

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

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

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

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

  .effective-date {
    background-color: hsl(103, 39%, 95%);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
  }

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

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

  .contact-box a {
    color: white;
    text-decoration: underline;
  }

  .contact-box a:hover {
    color: var(--accent-color);
  }

  .info-highlight {
    background-color: hsl(103, 39%, 97%);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid var(--accent-color);
  }

  .section-divider {
    height: 2px;
    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=Montserrat:wght@600;700&family=Source+Sans+Pro:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(103, 39%, 37%);
    --secondary-color: hsl(103, 39%, 22%);
    --accent-color: hsl(103, 39%, 62%);
  }
  
  .policy-content {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    border-bottom: 4px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
  }
  
  .policy-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .highlight-box {
    background-color: rgba(103, 139, 62, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-info {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
  }
  
  .contact-info a {
    color: var(--accent-color);
  }
  
  .contact-info a:hover {
    color: white;
  }
  
  .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
  }

.thank-you-section {
    font-family: 'Source Sans Pro', sans-serif;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, hsl(103, 39%, 97%) 0%, hsl(103, 39%, 92%) 100%);
  }

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

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

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

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

  .thank-you-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(103, 39%, 22%);
    margin-bottom: 1.5rem;
  }

  .thank-you-message {
    font-size: 1.125rem;
    color: hsl(0, 0%, 40%);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

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

  .info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }

  @media (min-width: 576px) {
    .info-cards {
      grid-template-columns: 1fr 1fr;
    }
  }

  .info-card {
    background: hsl(103, 39%, 95%);
    border-left: 4px solid hsl(103, 39%, 62%);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: left;
  }

  .info-card-icon {
    color: hsl(103, 39%, 37%);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .info-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(103, 39%, 22%);
    margin-bottom: 0.25rem;
  }

  .info-card-text {
    font-size: 0.875rem;
    color: hsl(0, 0%, 50%);
    margin: 0;
  }

  .btn-home {
    background-color: hsl(103, 39%, 37%);
    border: none;
    color: white;
    padding: 0.875rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
  }

  .btn-home:hover {
    background-color: hsl(103, 39%, 22%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: white;
  }

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

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

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

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