<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
            --primary: hsl(106, 41%, 43%);
            --secondary: hsl(106, 41%, 28%);
            --accent: hsl(106, 41%, 68%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(106, 167, 69, 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 {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 10px 0;
            }
        }

:root {
        --primary: hsl(106, 41%, 43%);
        --secondary: hsl(106, 41%, 28%);
        --accent: hsl(106, 41%, 68%);
        --light: #f8f9fa;
        --dark: #212529;
    }
    
    .hero-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "heading image"
            "subheading image"
            "description cta";
        gap: 2rem;
        padding: 5rem 2rem;
        background-color: var(--light);
        position: relative;
        overflow: hidden;
    }
    
    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(168, 218, 168, 0.1) 0%, rgba(106, 153, 78, 0.1) 100%);
        z-index: 0;
    }
    
    .hero-heading {
        grid-area: heading;
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--secondary);
        margin-bottom: 1rem;
        line-height: 1.2;
        position: relative;
        z-index: 1;
    }
    
    .hero-heading span {
        color: var(--primary);
    }
    
    .hero-subheading {
        grid-area: subheading;
        font-size: 1.8rem;
        font-weight: 500;
        color: var(--dark);
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }
    
    .hero-image-container {
        grid-area: image;
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
    }
    
    .hero-image:hover {
        transform: scale(1.02);
    }
    
    .hero-description {
        grid-area: description;
        position: relative;
        z-index: 1;
    }
    
    .hero-description p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--dark);
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        margin: 2rem 0;
    }
    
    .hero-features ul {
        padding-left: 0;
        list-style-type: none;
    }
    
    .hero-features li {
        margin-bottom: 0.8rem;
        padding-left: 2rem;
        position: relative;
        font-size: 1.1rem;
    }
    
    .hero-features li i {
        position: absolute;
        left: 0;
        top: 0.3rem;
        color: var(--primary);
    }
    
    .hero-cta {
        grid-area: cta;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        position: relative;
        z-index: 1;
    }
    
    .btn-primary {
        background-color: var(--primary);
        border-color: var(--primary);
        padding: 0.8rem 2rem;
        font-size: 1.2rem;
        border-radius: 50px;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover, .btn-primary:focus {
        background-color: var(--secondary);
        border-color: var(--secondary);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .btn-outline-secondary {
        color: var(--secondary);
        border-color: var(--secondary);
        padding: 0.8rem 2rem;
        font-size: 1.2rem;
        border-radius: 50px;
        margin-top: 1rem;
        transition: all 0.3s ease;
    }
    
    .btn-outline-secondary:hover, .btn-outline-secondary:focus {
        background-color: var(--secondary);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 992px) {
        .hero-section {
            grid-template-columns: 1fr;
            grid-template-areas:
                "heading"
                "subheading"
                "image"
                "description"
                "cta";
        }
        
        .hero-heading {
            font-size: 2.8rem;
        }
        
        .hero-subheading {
            font-size: 1.5rem;
        }
        
        .hero-image-container {
            margin: 2rem 0;
        }
    }

.services-section {
    padding: 5rem 0;
    background-color: #f9fdf7;
}

.services-section h2 {
    color: hsl(106, 41%, 28%);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.services-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(106, 41%, 43%);
}

.service-card {
    border: none;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
    margin-bottom: 30px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid hsl(106, 41%, 43%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: hsl(106, 41%, 43%);
    background: hsl(106, 41%, 95%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: hsl(106, 41%, 43%);
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(106, 41%, 28%);
}

.service-description {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: hsl(106, 41%, 43%);
    margin-top: auto;
}

.terms {
    color: #777;
    font-size: 0.85rem;
    font-style: italic;
}

.badge-feature {
    background-color: hsl(106, 41%, 68%);
    color: hsl(106, 41%, 28%);
    font-weight: 500;
    padding: 0.35rem 0.65rem;
    border-radius: 30px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.about-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        color: #333;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: hsl(106, 41%, 28%);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .about-section h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: hsl(106, 41%, 43%);
        font-weight: 600;
    }
    
    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #555;
    }
    
    .about-image {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }
    
    .about-image-secondary {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 40px;
    }
    
    .values-box {
        background-color: hsl(106, 41%, 68%);
        padding: 30px;
        border-radius: 8px;
        margin-top: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .values-box h3 {
        color: hsl(106, 41%, 28%);
    }
    
    .highlight {
        background: linear-gradient(transparent 70%, hsl(106, 41%, 68%) 30%);
        padding: 0 5px;
        font-style: italic;
    }
    
    .divider {
        height: 3px;
        width: 60px;
        background-color: hsl(106, 41%, 43%);
        margin: 20px 0;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 40px 0;
        }
        
        .about-section h2 {
            font-size: 2.2rem;
        }
        
        .about-image, .about-image-secondary {
            height: 300px;
        }
    }

.statistics-section {
        background-color: #f9f9f9;
        padding: 5rem 0;
        position: relative;
    }
    
    .statistics-section .section-title {
        color: hsl(106, 41%, 28%);
        margin-bottom: 3rem;
        position: relative;
        font-weight: 700;
    }
    
    .statistics-section .section-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(106, 41%, 43%);
    }
    
    .stat-card {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        padding: 25px 20px;
        margin-bottom: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }
    
    .stat-icon {
        font-size: 2.5rem;
        color: hsl(106, 41%, 43%);
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: hsl(106, 41%, 28%);
        margin-bottom: 5px;
    }
    
    .stat-title {
        font-size: 1.1rem;
        color: #666;
        font-weight: 500;
    }
    
    .stat-text {
        font-size: 0.9rem;
        color: #777;
        margin-top: 10px;
    }
    
    .progress-bar {
        background-color: hsl(106, 41%, 43%);
    }
    
    .progress {
        height: 8px;
        margin-top: 15px;
        background-color: hsl(106, 41%, 68%, 0.3);
    }
    
    @media (max-width: 768px) {
        .stat-card {
            margin-bottom: 20px;
        }
        
        .stat-number {
            font-size: 2rem;
        }
    }

.contact-section {
    padding: 100px 0;
    background-color: #fff;
  }
  
  .contact-section h2 {
    color: hsl(106, 41%, 28%);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
  }
  
  .contact-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: hsl(106, 41%, 43%);
  }
  
  .contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .form-group label {
    color: hsl(106, 41%, 28%);
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    height: auto;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border-color: hsl(106, 41%, 43%);
    box-shadow: 0 0 0 0.2rem rgba(76, 145, 65, 0.25);
  }
  
  .contact-btn {
    background-color: hsl(106, 41%, 43%);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
  }
  
  .contact-btn:hover {
    background-color: hsl(106, 41%, 28%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .contact-info {
    padding: 30px;
    border-radius: 10px;
    background-color: #f9f9f9;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .contact-info h3 {
    color: hsl(106, 41%, 28%);
    margin-bottom: 25px;
    font-weight: 600;
  }
  
  .hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 10px;
  }
  
  .hours-day {
    font-weight: 600;
    color: #333;
  }
  
  .hours-time {
    color: hsl(106, 41%, 43%);
  }
  
  .consultation-process {
    margin-top: 30px;
  }
  
  .consultation-step {
    display: flex;
    margin-bottom: 20px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    background-color: hsl(106, 41%, 68%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .step-content h4 {
    color: hsl(106, 41%, 28%);
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
  }
  
  @media (max-width: 767px) {
    .contact-info {
      margin-top: 30px;
    }
  }

.testimonials-section {
    padding: 5rem 0;
    background-color: #f9fcf7;
    font-family: 'Poppins', sans-serif;
  }
  
  .testimonials-section h2 {
    color: hsl(106, 41%, 28%);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .testimonials-section h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: hsl(106, 41%, 43%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .mosaic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 20px;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-card:before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 10px;
    font-size: 120px;
    color: hsl(106, 41%, 68%);
    opacity: 0.2;
    font-family: Georgia, serif;
  }
  
  .testimonial-content {
    position: relative;
    z-index: 2;
  }
  
  .testimonial-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .client-info {
    display: flex;
    flex-direction: column;
  }
  
  .client-name {
    font-weight: 600;
    color: hsl(106, 41%, 43%);
    margin-bottom: 5px;
  }
  
  .client-location {
    font-size: 14px;
    color: #888;
  }
  
  .size-1 {
    grid-column: span 6;
    grid-row: span 1;
  }
  
  .size-2 {
    grid-column: span 6;
    grid-row: span 1;
  }
  
  .size-3 {
    grid-column: span 4;
    grid-row: span 1;
  }
  
  .size-4 {
    grid-column: span 8;
    grid-row: span 1;
  }
  
  @media (max-width: 992px) {
    .size-1, .size-2, .size-3, .size-4 {
      grid-column: span 6;
    }
  }
  
  @media (max-width: 768px) {
    .size-1, .size-2, .size-3, .size-4 {
      grid-column: span 12;
    }
    
    .mosaic-grid {
      gap: 15px;
    }
  }

.faq-section {
        padding: 5rem 0;
        background-color: #f9fcf7;
    }
    
    .faq-heading {
        color: hsl(106, 41%, 28%);
        margin-bottom: 3rem;
        position: relative;
    }
    
    .faq-heading::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background-color: hsl(106, 41%, 43%);
    }
    
    .faq-tabs {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 2rem;
        border-bottom: 1px solid #ddd;
    }
    
    .faq-tab {
        padding: 0.75rem 1.5rem;
        background-color: transparent;
        border: none;
        cursor: pointer;
        font-weight: 600;
        color: #666;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .faq-tab.active {
        color: hsl(106, 41%, 28%);
    }
    
    .faq-tab.active::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: hsl(106, 41%, 43%);
    }
    
    .faq-content {
        display: none;
    }
    
    .faq-content.active {
        display: block;
    }
    
    .accordion-item {
        border: 1px solid #eee;
        border-radius: 6px;
        margin-bottom: 1rem;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .accordion-header {
        background-color: white;
        padding: 1.25rem;
        cursor: pointer;
        position: relative;
        font-weight: 600;
        color: hsl(106, 41%, 28%);
        transition: all 0.3s ease;
    }
    
    .accordion-header:hover {
        background-color: #f7faf4;
    }
    
    .accordion-header::after {
        content: "+";
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: hsl(106, 41%, 43%);
        transition: all 0.3s ease;
    }
    
    .accordion-item.active .accordion-header::after {
        content: "âˆ’";
    }
    
    .accordion-body {
        max-height: 0;
        overflow: hidden;
        padding: 0 1.25rem;
        background-color: white;
        transition: max-height 0.3s ease;
    }
    
    .accordion-item.active .accordion-body {
        max-height: 500px;
        padding: 1.25rem;
        border-top: 1px solid #eee;
    }
    
    @media (max-width: 768px) {
        .faq-tab {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
        
        .accordion-header {
            padding: 1rem;
            font-size: 0.95rem;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f9fbf6;
    }
    
    .advantages-title {
        color: hsl(106, 41%, 28%);
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-title:after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(106, 41%, 43%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantage-card {
        padding: 30px 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        background-color: white;
        transition: all 0.3s ease;
        height: 100%;
        border-bottom: 3px solid transparent;
        margin-bottom: 30px;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(106, 41%, 43%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(106, 41%, 43%);
        margin-bottom: 20px;
        display: inline-block;
        transition: transform 0.3s ease;
    }
    
    .advantage-card:hover .advantage-icon {
        transform: scale(1.1);
    }
    
    .advantage-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: hsl(106, 41%, 28%);
        margin-bottom: 15px;
    }
    
    .advantage-description {
        color: #666;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .advantages-section {
            padding: 50px 0;
        }
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(106, 41%, 28%), hsl(106, 41%, 43%));
        padding: 4rem 2rem;
        color: white;
        position: relative;
        overflow: hidden;
        border-radius: 0.5rem;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
        z-index: 1;
    }
    
    .newsletter-content {
        position: relative;
        z-index: 2;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }
    
    .subscription-form {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .form-control {
        height: 54px;
        font-size: 1rem;
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .btn-subscribe {
        background-color: hsl(106, 41%, 68%);
        color: hsl(106, 41%, 28%);
        font-weight: 700;
        padding: 0.75rem 2rem;
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        height: 54px;
    }
    
    .btn-subscribe:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }
    
    .benefits-list {
        max-width: 700px;
        margin: 2.5rem auto 0;
    }
    
    .benefit-item {
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
    }
    
    .benefit-icon {
        margin-right: 0.75rem;
        color: hsl(106, 41%, 68%);
        font-size: 1.2rem;
    }
    
    @media (max-width: 768px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-subtitle {
            font-size: 1.1rem;
        }
    }

:root {
  --primary-color: hsl(106, 41%, 43%);
  --secondary-color: hsl(106, 41%, 28%);
  --accent-color: hsl(106, 41%, 68%);
}

footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem 0;
  font-family: 'Roboto', sans-serif;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

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

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

.footer-links i {
  margin-right: 8px;
}

.copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.2rem 0;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s forwards;
}

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

.cookie-notice.show {
  display: block;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

:root {
            --primary: hsl(106, 41%, 43%);
            --secondary: hsl(106, 41%, 28%);
            --accent: hsl(106, 41%, 68%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(106, 167, 69, 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 {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 10px 0;
            }
        }

.services-section {
    padding: 5rem 0;
    background-color: #f9fdf7;
}

.services-section h2 {
    color: hsl(106, 41%, 28%);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.services-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: hsl(106, 41%, 43%);
}

.service-card {
    border: none;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
    margin-bottom: 30px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid hsl(106, 41%, 43%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: hsl(106, 41%, 43%);
    background: hsl(106, 41%, 95%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: hsl(106, 41%, 43%);
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(106, 41%, 28%);
}

.service-description {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: hsl(106, 41%, 43%);
    margin-top: auto;
}

.terms {
    color: #777;
    font-size: 0.85rem;
    font-style: italic;
}

.badge-feature {
    background-color: hsl(106, 41%, 68%);
    color: hsl(106, 41%, 28%);
    font-weight: 500;
    padding: 0.35rem 0.65rem;
    border-radius: 30px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.newsletter-section {
        background: linear-gradient(135deg, hsl(106, 41%, 28%), hsl(106, 41%, 43%));
        padding: 4rem 2rem;
        color: white;
        position: relative;
        overflow: hidden;
        border-radius: 0.5rem;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
        z-index: 1;
    }
    
    .newsletter-content {
        position: relative;
        z-index: 2;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }
    
    .subscription-form {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .form-control {
        height: 54px;
        font-size: 1rem;
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .btn-subscribe {
        background-color: hsl(106, 41%, 68%);
        color: hsl(106, 41%, 28%);
        font-weight: 700;
        padding: 0.75rem 2rem;
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        height: 54px;
    }
    
    .btn-subscribe:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }
    
    .benefits-list {
        max-width: 700px;
        margin: 2.5rem auto 0;
    }
    
    .benefit-item {
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
    }
    
    .benefit-icon {
        margin-right: 0.75rem;
        color: hsl(106, 41%, 68%);
        font-size: 1.2rem;
    }
    
    @media (max-width: 768px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-subtitle {
            font-size: 1.1rem;
        }
    }

.testimonials-section {
    padding: 5rem 0;
    background-color: #f9fcf7;
    font-family: 'Poppins', sans-serif;
  }
  
  .testimonials-section h2 {
    color: hsl(106, 41%, 28%);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .testimonials-section h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: hsl(106, 41%, 43%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .mosaic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 20px;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-card:before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 10px;
    font-size: 120px;
    color: hsl(106, 41%, 68%);
    opacity: 0.2;
    font-family: Georgia, serif;
  }
  
  .testimonial-content {
    position: relative;
    z-index: 2;
  }
  
  .testimonial-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .client-info {
    display: flex;
    flex-direction: column;
  }
  
  .client-name {
    font-weight: 600;
    color: hsl(106, 41%, 43%);
    margin-bottom: 5px;
  }
  
  .client-location {
    font-size: 14px;
    color: #888;
  }
  
  .size-1 {
    grid-column: span 6;
    grid-row: span 1;
  }
  
  .size-2 {
    grid-column: span 6;
    grid-row: span 1;
  }
  
  .size-3 {
    grid-column: span 4;
    grid-row: span 1;
  }
  
  .size-4 {
    grid-column: span 8;
    grid-row: span 1;
  }
  
  @media (max-width: 992px) {
    .size-1, .size-2, .size-3, .size-4 {
      grid-column: span 6;
    }
  }
  
  @media (max-width: 768px) {
    .size-1, .size-2, .size-3, .size-4 {
      grid-column: span 12;
    }
    
    .mosaic-grid {
      gap: 15px;
    }
  }

:root {
  --primary-color: hsl(106, 41%, 43%);
  --secondary-color: hsl(106, 41%, 28%);
  --accent-color: hsl(106, 41%, 68%);
}

footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem 0;
  font-family: 'Roboto', sans-serif;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

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

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

.footer-links i {
  margin-right: 8px;
}

.copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.2rem 0;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s forwards;
}

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

.cookie-notice.show {
  display: block;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

:root {
            --primary: hsl(106, 41%, 43%);
            --secondary: hsl(106, 41%, 28%);
            --accent: hsl(106, 41%, 68%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(106, 167, 69, 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 {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 10px 0;
            }
        }

.cookies-policy {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    .cookies-policy h1 {
        color: #2a5885;
        border-bottom: 2px solid #eaeaea;
        padding-bottom: 10px;
        margin-bottom: 30px;
        font-size: 32px;
    }
    .cookies-policy h2 {
        color: #2a5885;
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 24px;
    }
    .cookies-policy p {
        margin-bottom: 15px;
    }
    .cookies-policy ul, .cookies-policy ol {
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .cookies-policy li {
        margin-bottom: 10px;
    }
    .cookies-policy .highlight {
        background-color: #f5f5f5;
        padding: 15px;
        border-left: 4px solid #2a5885;
        margin-bottom: 20px;
    }
    .cookies-policy table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }
    .cookies-policy th, .cookies-policy td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    .cookies-policy th {
        background-color: #f2f2f2;
    }
    .cookies-policy tr:nth-child(even) {
        background-color: #f9f9f9;
    }

:root {
  --primary-color: hsl(106, 41%, 43%);
  --secondary-color: hsl(106, 41%, 28%);
  --accent-color: hsl(106, 41%, 68%);
}

footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem 0;
  font-family: 'Roboto', sans-serif;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

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

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

.footer-links i {
  margin-right: 8px;
}

.copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.2rem 0;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s forwards;
}

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

.cookie-notice.show {
  display: block;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

:root {
            --primary: hsl(106, 41%, 43%);
            --secondary: hsl(106, 41%, 28%);
            --accent: hsl(106, 41%, 68%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(106, 167, 69, 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 {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 10px 0;
            }
        }

.contact-section {
    padding: 100px 0;
    background-color: #fff;
  }
  
  .contact-section h2 {
    color: hsl(106, 41%, 28%);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
  }
  
  .contact-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: hsl(106, 41%, 43%);
  }
  
  .contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .form-group label {
    color: hsl(106, 41%, 28%);
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    height: auto;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border-color: hsl(106, 41%, 43%);
    box-shadow: 0 0 0 0.2rem rgba(76, 145, 65, 0.25);
  }
  
  .contact-btn {
    background-color: hsl(106, 41%, 43%);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
  }
  
  .contact-btn:hover {
    background-color: hsl(106, 41%, 28%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .contact-info {
    padding: 30px;
    border-radius: 10px;
    background-color: #f9f9f9;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .contact-info h3 {
    color: hsl(106, 41%, 28%);
    margin-bottom: 25px;
    font-weight: 600;
  }
  
  .hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 10px;
  }
  
  .hours-day {
    font-weight: 600;
    color: #333;
  }
  
  .hours-time {
    color: hsl(106, 41%, 43%);
  }
  
  .consultation-process {
    margin-top: 30px;
  }
  
  .consultation-step {
    display: flex;
    margin-bottom: 20px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    background-color: hsl(106, 41%, 68%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .step-content h4 {
    color: hsl(106, 41%, 28%);
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
  }
  
  @media (max-width: 767px) {
    .contact-info {
      margin-top: 30px;
    }
  }

.about-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        color: #333;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: hsl(106, 41%, 28%);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .about-section h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: hsl(106, 41%, 43%);
        font-weight: 600;
    }
    
    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #555;
    }
    
    .about-image {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }
    
    .about-image-secondary {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 40px;
    }
    
    .values-box {
        background-color: hsl(106, 41%, 68%);
        padding: 30px;
        border-radius: 8px;
        margin-top: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .values-box h3 {
        color: hsl(106, 41%, 28%);
    }
    
    .highlight {
        background: linear-gradient(transparent 70%, hsl(106, 41%, 68%) 30%);
        padding: 0 5px;
        font-style: italic;
    }
    
    .divider {
        height: 3px;
        width: 60px;
        background-color: hsl(106, 41%, 43%);
        margin: 20px 0;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 40px 0;
        }
        
        .about-section h2 {
            font-size: 2.2rem;
        }
        
        .about-image, .about-image-secondary {
            height: 300px;
        }
    }

:root {
  --primary-color: hsl(106, 41%, 43%);
  --secondary-color: hsl(106, 41%, 28%);
  --accent-color: hsl(106, 41%, 68%);
}

footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem 0;
  font-family: 'Roboto', sans-serif;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

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

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

.footer-links i {
  margin-right: 8px;
}

.copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.2rem 0;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s forwards;
}

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

.cookie-notice.show {
  display: block;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

:root {
            --primary: hsl(106, 41%, 43%);
            --secondary: hsl(106, 41%, 28%);
            --accent: hsl(106, 41%, 68%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(106, 167, 69, 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 {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 10px 0;
            }
        }

.privacy-container {
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
    }
    .privacy-header {
        text-align: center;
        margin-bottom: 30px;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 20px;
    }
    .privacy-header h1 {
        color: #2c3e50;
        font-size: 36px;
        margin-bottom: 10px;
    }
    .privacy-header p {
        color: #7f8c8d;
        font-size: 18px;
    }
    .privacy-section {
        margin-bottom: 30px;
        padding: 20px;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .privacy-section h2 {
        color: #2980b9;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    .privacy-section p {
        margin-bottom: 15px;
    }
    .privacy-section ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    .privacy-section ul li {
        margin-bottom: 8px;
    }
    .last-updated {
        text-align: center;
        font-style: italic;
        color: #7f8c8d;
        margin-top: 30px;
        font-size: 14px;
    }

:root {
  --primary-color: hsl(106, 41%, 43%);
  --secondary-color: hsl(106, 41%, 28%);
  --accent-color: hsl(106, 41%, 68%);
}

footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem 0;
  font-family: 'Roboto', sans-serif;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

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

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

.footer-links i {
  margin-right: 8px;
}

.copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.2rem 0;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s forwards;
}

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

.cookie-notice.show {
  display: block;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

:root {
            --primary: hsl(106, 41%, 43%);
            --secondary: hsl(106, 41%, 28%);
            --accent: hsl(106, 41%, 68%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(106, 167, 69, 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 {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 10px 0;
            }
        }

.faq-section {
        padding: 5rem 0;
        background-color: #f9fcf7;
    }
    
    .faq-heading {
        color: hsl(106, 41%, 28%);
        margin-bottom: 3rem;
        position: relative;
    }
    
    .faq-heading::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background-color: hsl(106, 41%, 43%);
    }
    
    .faq-tabs {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 2rem;
        border-bottom: 1px solid #ddd;
    }
    
    .faq-tab {
        padding: 0.75rem 1.5rem;
        background-color: transparent;
        border: none;
        cursor: pointer;
        font-weight: 600;
        color: #666;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .faq-tab.active {
        color: hsl(106, 41%, 28%);
    }
    
    .faq-tab.active::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: hsl(106, 41%, 43%);
    }
    
    .faq-content {
        display: none;
    }
    
    .faq-content.active {
        display: block;
    }
    
    .accordion-item {
        border: 1px solid #eee;
        border-radius: 6px;
        margin-bottom: 1rem;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .accordion-header {
        background-color: white;
        padding: 1.25rem;
        cursor: pointer;
        position: relative;
        font-weight: 600;
        color: hsl(106, 41%, 28%);
        transition: all 0.3s ease;
    }
    
    .accordion-header:hover {
        background-color: #f7faf4;
    }
    
    .accordion-header::after {
        content: "+";
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: hsl(106, 41%, 43%);
        transition: all 0.3s ease;
    }
    
    .accordion-item.active .accordion-header::after {
        content: "âˆ’";
    }
    
    .accordion-body {
        max-height: 0;
        overflow: hidden;
        padding: 0 1.25rem;
        background-color: white;
        transition: max-height 0.3s ease;
    }
    
    .accordion-item.active .accordion-body {
        max-height: 500px;
        padding: 1.25rem;
        border-top: 1px solid #eee;
    }
    
    @media (max-width: 768px) {
        .faq-tab {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
        
        .accordion-header {
            padding: 1rem;
            font-size: 0.95rem;
        }
    }

.about-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        color: #333;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: hsl(106, 41%, 28%);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .about-section h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: hsl(106, 41%, 43%);
        font-weight: 600;
    }
    
    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #555;
    }
    
    .about-image {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }
    
    .about-image-secondary {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 40px;
    }
    
    .values-box {
        background-color: hsl(106, 41%, 68%);
        padding: 30px;
        border-radius: 8px;
        margin-top: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .values-box h3 {
        color: hsl(106, 41%, 28%);
    }
    
    .highlight {
        background: linear-gradient(transparent 70%, hsl(106, 41%, 68%) 30%);
        padding: 0 5px;
        font-style: italic;
    }
    
    .divider {
        height: 3px;
        width: 60px;
        background-color: hsl(106, 41%, 43%);
        margin: 20px 0;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 40px 0;
        }
        
        .about-section h2 {
            font-size: 2.2rem;
        }
        
        .about-image, .about-image-secondary {
            height: 300px;
        }
    }

.newsletter-section {
        background: linear-gradient(135deg, hsl(106, 41%, 28%), hsl(106, 41%, 43%));
        padding: 4rem 2rem;
        color: white;
        position: relative;
        overflow: hidden;
        border-radius: 0.5rem;
    }
    
    .newsletter-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
        z-index: 1;
    }
    
    .newsletter-content {
        position: relative;
        z-index: 2;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }
    
    .subscription-form {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .form-control {
        height: 54px;
        font-size: 1rem;
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .btn-subscribe {
        background-color: hsl(106, 41%, 68%);
        color: hsl(106, 41%, 28%);
        font-weight: 700;
        padding: 0.75rem 2rem;
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        height: 54px;
    }
    
    .btn-subscribe:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }
    
    .benefits-list {
        max-width: 700px;
        margin: 2.5rem auto 0;
    }
    
    .benefit-item {
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
    }
    
    .benefit-icon {
        margin-right: 0.75rem;
        color: hsl(106, 41%, 68%);
        font-size: 1.2rem;
    }
    
    @media (max-width: 768px) {
        .newsletter-title {
            font-size: 2rem;
        }
        
        .newsletter-subtitle {
            font-size: 1.1rem;
        }
    }

:root {
  --primary-color: hsl(106, 41%, 43%);
  --secondary-color: hsl(106, 41%, 28%);
  --accent-color: hsl(106, 41%, 68%);
}

footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem 0;
  font-family: 'Roboto', sans-serif;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

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

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

.footer-links i {
  margin-right: 8px;
}

.copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.2rem 0;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s forwards;
}

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

.cookie-notice.show {
  display: block;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

:root {
            --primary: hsl(106, 41%, 43%);
            --secondary: hsl(106, 41%, 28%);
            --accent: hsl(106, 41%, 68%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(106, 167, 69, 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 {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 10px 0;
            }
        }

.about-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        color: #333;
        font-family: 'Poppins', sans-serif;
    }
    
    .about-section h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: hsl(106, 41%, 28%);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .about-section h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: hsl(106, 41%, 43%);
        font-weight: 600;
    }
    
    .about-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #555;
    }
    
    .about-image {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }
    
    .about-image-secondary {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 40px;
    }
    
    .values-box {
        background-color: hsl(106, 41%, 68%);
        padding: 30px;
        border-radius: 8px;
        margin-top: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .values-box h3 {
        color: hsl(106, 41%, 28%);
    }
    
    .highlight {
        background: linear-gradient(transparent 70%, hsl(106, 41%, 68%) 30%);
        padding: 0 5px;
        font-style: italic;
    }
    
    .divider {
        height: 3px;
        width: 60px;
        background-color: hsl(106, 41%, 43%);
        margin: 20px 0;
    }
    
    @media (max-width: 768px) {
        .about-section {
            padding: 40px 0;
        }
        
        .about-section h2 {
            font-size: 2.2rem;
        }
        
        .about-image, .about-image-secondary {
            height: 300px;
        }
    }

.advantages-section {
        padding: 80px 0;
        background-color: #f9fbf6;
    }
    
    .advantages-title {
        color: hsl(106, 41%, 28%);
        margin-bottom: 50px;
        font-weight: 700;
        position: relative;
    }
    
    .advantages-title:after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: hsl(106, 41%, 43%);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .advantage-card {
        padding: 30px 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        background-color: white;
        transition: all 0.3s ease;
        height: 100%;
        border-bottom: 3px solid transparent;
        margin-bottom: 30px;
    }
    
    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid hsl(106, 41%, 43%);
    }
    
    .advantage-icon {
        font-size: 2.5rem;
        color: hsl(106, 41%, 43%);
        margin-bottom: 20px;
        display: inline-block;
        transition: transform 0.3s ease;
    }
    
    .advantage-card:hover .advantage-icon {
        transform: scale(1.1);
    }
    
    .advantage-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: hsl(106, 41%, 28%);
        margin-bottom: 15px;
    }
    
    .advantage-description {
        color: #666;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .advantages-section {
            padding: 50px 0;
        }
    }

.statistics-section {
        background-color: #f9f9f9;
        padding: 5rem 0;
        position: relative;
    }
    
    .statistics-section .section-title {
        color: hsl(106, 41%, 28%);
        margin-bottom: 3rem;
        position: relative;
        font-weight: 700;
    }
    
    .statistics-section .section-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: hsl(106, 41%, 43%);
    }
    
    .stat-card {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        padding: 25px 20px;
        margin-bottom: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }
    
    .stat-icon {
        font-size: 2.5rem;
        color: hsl(106, 41%, 43%);
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: hsl(106, 41%, 28%);
        margin-bottom: 5px;
    }
    
    .stat-title {
        font-size: 1.1rem;
        color: #666;
        font-weight: 500;
    }
    
    .stat-text {
        font-size: 0.9rem;
        color: #777;
        margin-top: 10px;
    }
    
    .progress-bar {
        background-color: hsl(106, 41%, 43%);
    }
    
    .progress {
        height: 8px;
        margin-top: 15px;
        background-color: hsl(106, 41%, 68%, 0.3);
    }
    
    @media (max-width: 768px) {
        .stat-card {
            margin-bottom: 20px;
        }
        
        .stat-number {
            font-size: 2rem;
        }
    }

:root {
  --primary-color: hsl(106, 41%, 43%);
  --secondary-color: hsl(106, 41%, 28%);
  --accent-color: hsl(106, 41%, 68%);
}

footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem 0;
  font-family: 'Roboto', sans-serif;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

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

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

.footer-links i {
  margin-right: 8px;
}

.copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.2rem 0;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s forwards;
}

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

.cookie-notice.show {
  display: block;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

:root {
            --primary: hsl(106, 41%, 43%);
            --secondary: hsl(106, 41%, 28%);
            --accent: hsl(106, 41%, 68%);
        }
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--primary);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: rotate(10deg);
        }
        
        .nav-link {
            color: #333;
            font-weight: 500;
            position: relative;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            outline: none;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(106, 167, 69, 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 {
                padding: 20px 0;
            }
            
            .nav-link {
                padding: 10px 0;
            }
        }

.terms-container {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    .terms-container h1 {
        color: #2c3e50;
        border-bottom: 2px solid #e74c3c;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    .terms-container h2 {
        color: #3498db;
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.5em;
    }
    .terms-container p {
        margin-bottom: 15px;
        text-align: justify;
    }
    .terms-container ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    .terms-container li {
        margin-bottom: 8px;
    }
    .terms-container .highlight {
        background-color: #f9f9f9;
        padding: 15px;
        border-left: 4px solid #3498db;
        margin-bottom: 20px;
    }
    .terms-container .last-updated {
        font-style: italic;
        color: #7f8c8d;
        margin-top: 30px;
        text-align: right;
    }

:root {
  --primary-color: hsl(106, 41%, 43%);
  --secondary-color: hsl(106, 41%, 28%);
  --accent-color: hsl(106, 41%, 68%);
}

footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem 0;
  font-family: 'Roboto', sans-serif;
}

footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

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

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

.footer-links i {
  margin-right: 8px;
}

.copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.2rem 0;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s forwards;
}

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

.cookie-notice.show {
  display: block;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}</pre></body></html>