:root {
            --primary-color: hsl(145, 46%, 39%);
            --secondary-color: hsl(145, 46%, 24%);
            --accent-color: hsl(145, 46%, 64%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        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.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            font-family: 'Source Sans Pro', sans-serif;
            font-weight: 400;
            color: #333;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
            text-decoration: none;
        }
        
        .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.25rem rgba(68, 138, 93, 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(37, 86, 56, 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;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

.about-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(145, 46%, 39%);
  margin-bottom: 15px;
  font-size: 1.75rem;
  margin-top: 30px;
}

.about-section p {
  color: #333;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.about-intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 0;
  margin-bottom: 60px;
}

.about-image-wrapper {
  position: relative;
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

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

.value-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid hsl(145, 46%, 39%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsl(145, 46%, 24%);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

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

.stats-row {
  background: hsl(145, 46%, 39%);
  padding: 50px 0;
  margin: 60px 0;
  border-radius: 12px;
}

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

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
}

.mission-vision-box {
  background: linear-gradient(135deg, hsl(145, 46%, 24%) 0%, hsl(145, 46%, 39%) 100%);
  padding: 50px;
  border-radius: 12px;
  color: #ffffff;
  margin: 40px 0;
}

.mission-vision-box h3 {
  color: #ffffff;
  margin-top: 0;
}

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

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section h2 {
    font-size: 2rem;
  }
  
  .about-section h3 {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .mission-vision-box {
    padding: 30px 20px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

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

  #portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(145, 46%, 39%), hsl(145, 46%, 64%));
  }

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

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

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

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

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

  .filter-btn {
    font-family: 'Source Sans Pro', sans-serif;
    padding: 10px 28px;
    background: #fff;
    border: 2px solid hsl(145, 46%, 39%);
    color: hsl(145, 46%, 39%);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: hsl(145, 46%, 39%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 142, 90, 0.3);
  }

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

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

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

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

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

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

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 142, 90, 0.9), rgba(34, 86, 55, 0.95));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

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

  .portfolio-category {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.85rem;
    color: hsl(145, 46%, 39%);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .portfolio-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .portfolio-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .view-details-btn {
    font-family: 'Source Sans Pro', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(145, 46%, 39%);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
  }

  .view-details-btn:hover {
    gap: 12px;
    color: hsl(145, 46%, 24%);
  }

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

  .modal-header {
    background: linear-gradient(135deg, hsl(145, 46%, 39%), hsl(145, 46%, 24%));
    color: #fff;
    border: none;
    padding: 25px 30px;
  }

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

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

  .modal-body {
    padding: 35px 30px;
  }

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

  .modal-category {
    display: inline-block;
    background: hsl(145, 46%, 64%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .modal-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
  }

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

  .project-details h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 18px;
    font-weight: 700;
  }

  .project-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .project-details li {
    font-family: 'Source Sans Pro', sans-serif;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .project-details li:last-child {
    border-bottom: none;
  }

  .project-details li::before {
    content: '✓';
    color: hsl(145, 46%, 39%);
    font-weight: bold;
    font-size: 1.2rem;
  }

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

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

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

    .filter-buttons {
      gap: 10px;
    }

    .filter-btn {
      padding: 8px 20px;
      font-size: 0.85rem;
    }

    .portfolio-image {
      height: 240px;
    }
  }

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

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

.advantages-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.advantage-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(145, 46%, 39%, 0.1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(145, 46%, 39%) 0%, hsl(145, 46%, 64%) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    border-color: hsl(145, 46%, 39%);
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(145, 46%, 24%) 0%, hsl(145, 46%, 39%) 100%);
}

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

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

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

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

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(145, 46%, 39%) 0%, hsl(145, 46%, 64%) 100%);
}

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

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

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

.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    margin-bottom: 30px;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(52, 121, 79, 0.15);
    border-color: hsl(145, 46%, 64%);
}

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

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(145, 46%, 64%) 0%, hsl(145, 46%, 39%) 100%);
}

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(145, 46%, 24%);
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-context {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.875rem;
    color: #777;
    font-style: italic;
}

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

.stat-card.animate .stat-number {
    animation: countUp 0.8s ease-out;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-section .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .statistics-section .section-title {
        font-size: 1.75rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
}

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

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

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

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

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

footer a:hover {
  color: hsl(145, 46%, 64%);
  padding-left: 5px;
}

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

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

footer .contact-info {
  margin-bottom: 15px;
}

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

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

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

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

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

footer .policy-links a:hover {
  color: hsl(145, 46%, 64%);
  padding-left: 0;
}

#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(145, 46%, 39%);
  font-family: 'Source Sans Pro', sans-serif;
}

#cookieNotice .container {
  max-width: 1200px;
}

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

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

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

#cookieNotice .cookie-category {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: center;
}

#cookieNotice .cookie-category strong {
  color: #222;
  min-width: 180px;
  font-weight: 600;
}

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

#cookieNotice .badge-required {
  background-color: hsl(145, 46%, 39%);
  color: #ffffff;
}

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

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

#cookieNotice .btn-accept-all {
  background: hsl(145, 46%, 39%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

#cookieNotice .btn-accept-all:hover {
  background: hsl(145, 46%, 24%);
  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: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

#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(145, 46%, 39%);
  border: 2px solid hsl(145, 46%, 39%);
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

#cookieNotice .btn-manage:hover {
  background: hsl(145, 46%, 39%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

.contact-section .lead {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(145, 46%, 39%), hsl(145, 46%, 64%));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.25rem;
}

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

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

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

.contact-details a {
    color: hsl(145, 46%, 39%);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: hsl(145, 46%, 24%);
}

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

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

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

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: hsl(145, 46%, 39%);
    box-shadow: 0 0 0 0.2rem rgba(72, 134, 93, 0.15);
    outline: none;
}

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

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

.btn-submit {
    background: linear-gradient(135deg, hsl(145, 46%, 39%), hsl(145, 46%, 24%));
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 134, 93, 0.3);
    background: linear-gradient(135deg, hsl(145, 46%, 24%), hsl(145, 46%, 39%));
}

.required-mark {
    color: hsl(145, 46%, 39%);
    margin-left: 2px;
}

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

.hours-list li {
    padding: 0.4rem 0;
    color: #555;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #dee2e6;
}

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

.day-label {
    font-weight: 600;
    color: #333;
}

.time-label {
    color: #666;
}

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

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

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

  :root {
    --primary-color: hsl(145, 46%, 39%);
    --secondary-color: hsl(145, 46%, 24%);
    --accent-color: hsl(145, 46%, 64%);
  }

  body {
    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.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
  }

  .policy-content h2 {
    font-size: 1.85rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    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.25rem;
    font-size: 1.05rem;
    font-weight: 400;
  }

  .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.75rem;
    font-size: 1.05rem;
  }

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

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

  .intro-box p {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 400;
  }

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

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

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

  .table {
    border: 2px solid var(--accent-color);
  }

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

  .table tbody tr:hover {
    background-color: rgba(145, 46%, 39%, 0.05);
  }

  .highlight-section {
    background-color: #f0f7f4;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid var(--accent-color);
  }

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

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

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

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

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #ffffff;
}

.faq-accordion .accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: hsl(145, 46%, 39%);
    color: #ffffff;
}

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

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

.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 {
    padding: 1.5rem;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    background-color: #ffffff;
}

.faq-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, hsl(145, 46%, 39%) 0%, hsl(145, 46%, 24%) 100%);
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.faq-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.faq-cta .btn-contact {
    background-color: #ffffff;
    color: hsl(145, 46%, 39%);
    border: none;
    padding: 0.875rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.faq-cta .btn-contact:hover {
    background-color: hsl(145, 46%, 64%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .faq-accordion .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-accordion .accordion-body {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

.newsletter-section {
  background: linear-gradient(135deg, hsl(145, 46%, 39%) 0%, hsl(145, 46%, 24%) 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-content {
  position: relative;
  z-index: 2;
}

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

.newsletter-section p {
  font-family: 'Source Sans Pro', sans-serif;
  color: #f8f9fa;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.newsletter-form-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 280px;
  padding: 16px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: 'Source Sans Pro', sans-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: #ffffff;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.newsletter-submit:hover {
  background: hsl(145, 46%, 64%);
  color: #ffffff;
  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: 2.5rem;
  flex-wrap: wrap;
}

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

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

.benefit-icon::before {
  content: '✓';
  font-weight: bold;
  color: #ffffff;
}

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

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

  .newsletter-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .newsletter-form-wrapper {
    flex-direction: column;
  }

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

  .newsletter-submit {
    width: 100%;
  }

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

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

  .newsletter-input,
  .newsletter-submit {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: hsl(145, 46%, 39%);
  opacity: 0.05;
  transform: skewX(-15deg);
  transform-origin: top;
}

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

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

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

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

.hero-image-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

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

.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: #333;
  margin-bottom: 1.2rem;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.6;
}

.advantages-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 24px;
  height: 24px;
  background: hsl(145, 46%, 39%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantages-list li i {
  position: absolute;
  left: 5px;
  top: 0.5rem;
  color: #fff;
  font-size: 0.9rem;
  z-index: 1;
}

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

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

.btn-hero-primary:hover {
  background: hsl(145, 46%, 24%);
  border-color: hsl(145, 46%, 24%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 104, 74, 0.3);
}

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

.btn-hero-secondary:hover {
  background: hsl(145, 46%, 39%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 104, 74, 0.2);
}

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

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

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

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

  .advantages-list li {
    font-size: 1rem;
  }

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

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

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

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

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

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

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(52, 115, 75, 0.2);
  border-color: hsl(145, 46%, 64%);
}

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

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

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

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

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

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

.service-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(145, 46%, 39%);
}

.service-duration {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

.service-btn {
  background: hsl(145, 46%, 39%);
  color: #ffffff;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
}

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

@media (max-width: 768px) {
  .services-section {
    padding: 50px 0;
  }
  
  .services-section .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
}

.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 .subtitle {
  color: #666;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 4px solid hsl(145, 46%, 39%);
}

.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(145, 46%, 39%), hsl(145, 46%, 64%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  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: 3px;
}

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

.testimonial-location i {
  color: hsl(145, 46%, 39%);
  font-size: 0.85rem;
}

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

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

.star.empty {
  color: #ddd;
}

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

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

.testimonial-card.featured {
  background: linear-gradient(135deg, hsl(145, 46%, 39%) 0%, hsl(145, 46%, 24%) 100%);
  border-left: 4px solid hsl(145, 46%, 64%);
}

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

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

.testimonial-card.featured .testimonial-avatar {
  background: #ffffff;
  color: hsl(145, 46%, 39%);
}

.testimonial-badge {
  display: inline-block;
  background: hsl(145, 46%, 64%);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
}

.testimonial-card.featured .testimonial-badge {
  background: rgba(255,255,255,0.2);
}

.testimonial-highlight {
  background: hsl(145, 46%, 95%);
  border-left: 3px solid hsl(145, 46%, 39%);
  padding: 15px;
  margin: 15px 0;
  border-radius: 6px;
}

.testimonial-highlight p {
  margin: 0;
  color: #333;
  font-weight: 500;
}

@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.2rem;
  }
}

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

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

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

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

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

.blog-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 3px solid hsl(145, 46%, 39%);
}

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

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #888;
}

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

.blog-meta-item i {
  color: hsl(145, 46%, 39%);
  font-size: 1rem;
}

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

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

.blog-card-title a:hover {
  color: hsl(145, 46%, 39%);
}

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

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(145, 46%, 39%);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.blog-read-more:hover {
  color: hsl(145, 46%, 24%);
  gap: 0.8rem;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

.view-all-btn {
  display: inline-block;
  margin-top: 3rem;
  padding: 14px 40px;
  background: hsl(145, 46%, 39%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid hsl(145, 46%, 39%);
}

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

.blog-btn-wrapper {
  text-align: center;
}

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

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

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

  .blog-card-body {
    padding: 1.5rem;
  }

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

  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

  #credentials .section-subtitle {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 45px;
    max-width: 600px;
    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 6px 12px rgba(0,0,0,0.1);
    border-color: hsl(145, 46%, 39%);
  }

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

  .credential-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
  }

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

    #credentials .section-title {
      font-size: 1.75rem;
    }

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

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

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

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

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

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

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

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

.offer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  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;
  margin-left: auto;
  margin-right: auto;
}

.deadline-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  margin: 50px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.deadline-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: hsl(145, 46%, 39%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.calendar-icon {
  width: 50px;
  height: 50px;
  background: hsl(145, 46%, 39%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: hsl(145, 46%, 64%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: hsl(145, 46%, 24%);
}

.benefit-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.benefit-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: #f8f9fa;
  line-height: 1.6;
  margin: 0;
}

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

.offer-btn {
  display: inline-block;
  background: #ffffff;
  color: hsl(145, 46%, 39%);
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: hsl(145, 46%, 64%);
  color: hsl(145, 46%, 24%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

.discount-number {
  font-size: 32px;
  line-height: 1;
}

.discount-text {
  font-size: 12px;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

  .offer-title {
    font-size: 32px;
  }

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

  .deadline-box {
    padding: 30px 20px;
  }

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

  .calendar-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .discount-badge {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 10px;
  }

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

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

  .offer-btn {
    font-size: 16px;
    padding: 15px 40px;
  }
}

.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(145, 46%, 39%);
}

.disclaimer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(145, 46%, 64%) 0%, hsl(145, 46%, 39%) 100%);
  border-radius: 50%;
  margin-bottom: 25px;
  color: #ffffff;
  font-size: 32px;
}

.disclaimer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

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

.disclaimer-text strong {
  color: hsl(145, 46%, 24%);
  font-weight: 600;
}

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

@media (max-width: 480px) {
  .disclaimer-title {
    font-size: 1.75rem;
  }
  
  .disclaimer-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Source+Sans+Pro:wght@300;400;600&display=swap');
  
  :root {
    --primary-color: hsl(145, 46%, 39%);
    --secondary-color: hsl(145, 46%, 24%);
    --accent-color: hsl(145, 46%, 64%);
  }
  
  .policy-content {
    font-family: 'Source Sans Pro', sans-serif;
    color: #2c3e50;
    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);
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
    font-weight: 800;
  }
  
  .policy-content h2 {
    font-size: 1.85rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    font-weight: 400;
  }
  
  .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.75rem;
    font-size: 1.05rem;
  }
  
  .policy-content strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .highlight-box {
    background: linear-gradient(135deg, rgba(72, 149, 99, 0.08) 0%, rgba(72, 149, 99, 0.03) 100%);
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-info {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-info a {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
  }
  
  .contact-info a:hover {
    color: white;
  }
  
  .last-updated {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }

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

  :root {
    --primary-color: hsl(145, 46%, 39%);
    --secondary-color: hsl(145, 46%, 24%);
    --accent-color: hsl(145, 46%, 64%);
  }

  .policy-content {
    font-family: 'Source Sans Pro', sans-serif;
    color: #2c3e50;
    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);
  }

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

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

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

  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    font-weight: 400;
  }

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

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

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

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

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

  .last-updated {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
  }

  .terms-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

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

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

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

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

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

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

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

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

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

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

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

  .thank-you-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: hsl(145, 46%, 24%);
    margin-bottom: 1rem;
  }

  .thank-you-subheading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: hsl(145, 46%, 39%);
    margin-bottom: 1.5rem;
  }

  .thank-you-message {
    font-size: 1.125rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .info-card {
    background: hsl(145, 46%, 97%);
    border-left: 4px solid hsl(145, 46%, 39%);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    text-align: left;
  }

  .info-card-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
    vertical-align: middle;
    color: hsl(145, 46%, 39%);
  }

  .info-card-text {
    display: inline;
    font-size: 1rem;
    color: #333333;
    vertical-align: middle;
  }

  .btn-home {
    background-color: hsl(145, 46%, 39%);
    border: none;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

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

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

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

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

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

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

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