:root {
            --primary-color: hsl(124, 67%, 50%);
            --secondary-color: hsl(124, 67%, 35%);
            --accent-color: hsl(124, 67%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .logo-container:hover img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg);
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="hsl(124, 67%, 50%)" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="hsl(124, 67%, 35%)" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="hsl(124, 67%, 75%)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(124, 67%, 35%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 67%, 50%), hsl(124, 67%, 75%));
    border-radius: 2px;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(124, 67%, 50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.story-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(124, 67%, 35%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.story-title::before {
    content: '✨';
    margin-right: 15px;
    font-size: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 0;
}

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

.mission-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(124, 67%, 75%);
}

.mission-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-top-color: hsl(124, 67%, 50%);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: hsl(124, 67%, 50%);
}

.mission-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(124, 67%, 35%);
    margin-bottom: 15px;
}

.mission-text {
    color: #6c757d;
    line-height: 1.6;
}

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

.about-secondary-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(124, 67%, 50%, 0.3), hsl(124, 67%, 75%, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.highlight-box {
    background: linear-gradient(135deg, hsl(124, 67%, 75%, 0.2), hsl(124, 67%, 50%, 0.2));
    border: 2px solid hsl(124, 67%, 75%);
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    position: relative;
}

.highlight-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(124, 67%, 50%);
    font-weight: bold;
}

.highlight-text {
    font-size: 1.3rem;
    font-style: italic;
    color: hsl(124, 67%, 35%);
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-card {
        padding: 25px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-hero-image,
    .about-secondary-image {
        height: 300px;
    }
}

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

.advantages-title {
    color: hsl(124, 67%, 35%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.advantages-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 75%) 100%);
    border-radius: 2px;
}

.advantages-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 75%) 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 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(124, 67%, 75%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 50%) 100%);
}

.advantage-icon i {
    font-size: 28px;
    color: white;
}

.advantage-title {
    color: hsl(124, 67%, 35%);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.advantage-description {
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantage-card {
        margin-bottom: 30px;
        padding: 25px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 24px;
    }
}

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsla(124, 67%, 75%, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, hsla(124, 67%, 50%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-title {
    color: hsl(124, 67%, 35%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.stats-subtitle {
    color: hsl(124, 67%, 40%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.stat-circle {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 4px solid hsl(124, 67%, 90%);
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, hsl(124, 67%, 50%) 0deg, hsl(124, 67%, 75%) 120deg, hsl(124, 67%, 50%) 240deg, hsl(124, 67%, 35%) 360deg);
    border-radius: 50%;
    animation: rotate 8s linear infinite;
    opacity: 0.1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-circle:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: hsl(124, 67%, 50%);
}

.stat-icon {
    font-size: 2.5rem;
    color: hsl(124, 67%, 50%);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: hsl(124, 67%, 35%);
    line-height: 1;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(124, 67%, 40%);
    text-align: center;
    font-weight: 600;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-circle {
    transform: translateY(-10px) scale(1.05);
}

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

.stat-description {
    color: hsl(124, 67%, 45%);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .stat-circle {
        width: 150px;
        height: 150px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stats-title {
        font-size: 2.2rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(124, 67%, 75%);
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(124, 67%, 75%);
    transform: translateX(5px);
  }
  
  footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  footer .contact-info {
    margin-bottom: 1rem;
  }
  
  footer .contact-info i {
    color: hsl(124, 67%, 75%);
    margin-right: 0.5rem;
    width: 20px;
  }
  
  footer .footer-links {
    list-style: none;
    padding: 0;
  }
  
  footer .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 50%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    border: none;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    color: white;
    border: 2px solid hsl(124, 67%, 75%);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    footer .row > div {
      margin-bottom: 2rem;
    }
    
    .cookie-notice .btn {
      width: 100%;
      margin-bottom: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(124, 67%, 50%);
            --secondary-color: hsl(124, 67%, 35%);
            --accent-color: hsl(124, 67%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .logo-container:hover img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg);
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.privacy-policy {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #d4691a;
}

.privacy-header h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.privacy-header .subtitle {
    color: #d4691a;
    font-size: 1.2em;
    font-weight: 500;
}

.privacy-section {
    margin-bottom: 35px;
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #d4691a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.privacy-section h2 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ecf0f1;
}

.privacy-section h3 {
    color: #34495e;
    font-size: 1.2em;
    margin: 20px 0 10px 0;
}

.privacy-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-list {
    margin: 15px 0;
    padding-left: 0;
}

.privacy-list li {
    list-style: none;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.privacy-list li:before {
    content: "🎄";
    position: absolute;
    left: 0;
    top: 8px;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #d4691a;
    margin: 20px 0;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
}

footer {
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(124, 67%, 75%);
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(124, 67%, 75%);
    transform: translateX(5px);
  }
  
  footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  footer .contact-info {
    margin-bottom: 1rem;
  }
  
  footer .contact-info i {
    color: hsl(124, 67%, 75%);
    margin-right: 0.5rem;
    width: 20px;
  }
  
  footer .footer-links {
    list-style: none;
    padding: 0;
  }
  
  footer .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 50%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    border: none;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    color: white;
    border: 2px solid hsl(124, 67%, 75%);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    footer .row > div {
      margin-bottom: 2rem;
    }
    
    .cookie-notice .btn {
      width: 100%;
      margin-bottom: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(124, 67%, 50%);
            --secondary-color: hsl(124, 67%, 35%);
            --accent-color: hsl(124, 67%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .logo-container:hover img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg);
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.cookies-policy {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #2c3e50;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .cookies-policy h1 {
            color: #c0392b;
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            background: linear-gradient(45deg, #c0392b, #e74c3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cookies-policy h2 {
            color: #27ae60;
            font-size: 1.8rem;
            margin-top: 35px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #27ae60;
            position: relative;
        }

        .cookies-policy h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #e67e22;
        }

        .cookies-policy h3 {
            color: #8e44ad;
            font-size: 1.4rem;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        .cookies-policy p {
            margin-bottom: 18px;
            text-align: justify;
            background: rgba(255,255,255,0.7);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #3498db;
        }

        .cookies-policy ul {
            background: rgba(255,255,255,0.8);
            padding: 20px 25px;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .cookies-policy li {
            margin-bottom: 12px;
            padding-left: 10px;
            position: relative;
        }

        .cookies-policy li::before {
            content: '🍪';
            position: absolute;
            left: -15px;
            font-size: 1.2rem;
        }

        .cookie-type {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            border-radius: 12px;
            margin: 20px 0;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .cookie-type h4 {
            margin: 0 0 10px 0;
            font-size: 1.3rem;
            color: #fff;
        }

        .consent-notice {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            border: 2px solid #e91e63;
            box-shadow: 0 10px 25px rgba(233, 30, 99, 0.2);
        }

        .gdpr-compliance {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            border: 2px solid #26a69a;
        }

        .effective-date {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            margin-top: 40px;
            padding: 15px;
            background: rgba(255,255,255,0.5);
            border-radius: 8px;
        }

footer {
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(124, 67%, 75%);
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(124, 67%, 75%);
    transform: translateX(5px);
  }
  
  footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  footer .contact-info {
    margin-bottom: 1rem;
  }
  
  footer .contact-info i {
    color: hsl(124, 67%, 75%);
    margin-right: 0.5rem;
    width: 20px;
  }
  
  footer .footer-links {
    list-style: none;
    padding: 0;
  }
  
  footer .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 50%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    border: none;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    color: white;
    border: 2px solid hsl(124, 67%, 75%);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    footer .row > div {
      margin-bottom: 2rem;
    }
    
    .cookie-notice .btn {
      width: 100%;
      margin-bottom: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(124, 67%, 50%);
            --secondary-color: hsl(124, 67%, 35%);
            --accent-color: hsl(124, 67%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .logo-container:hover img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg);
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="snowflakes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="12" cy="8" r="0.5" fill="rgba(255,255,255,0.08)"/><circle cx="18" cy="15" r="1.5" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23snowflakes)"/></svg>') repeat;
    opacity: 0.3;
}

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

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(124, 67%, 75%);
    font-size: 1.3rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.info-title {
    color: hsl(124, 67%, 35%);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.consultation-steps {
    list-style: none;
    padding: 0;
}

.consultation-steps li {
    padding: 15px 0;
    border-bottom: 1px solid hsl(124, 67%, 75%);
    color: #666;
    font-size: 1rem;
    position: relative;
    padding-left: 40px;
}

.consultation-steps li:before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 15px;
    background: hsl(124, 67%, 50%);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.consultation-steps {
    counter-reset: step-counter;
}

.working-hours {
    background: hsl(124, 67%, 75%);
    border-radius: 15px;
    padding: 25px;
    margin-top: 2rem;
    text-align: center;
}

.working-hours h4 {
    color: hsl(124, 67%, 35%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.working-hours p {
    color: hsl(124, 67%, 25%);
    font-weight: 500;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.form-title {
    color: hsl(124, 67%, 35%);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: hsl(124, 67%, 35%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid hsl(124, 67%, 75%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: hsl(124, 67%, 50%);
    box-shadow: 0 0 0 3px rgba(124, 195, 124, 0.1);
    transform: translateY(-2px);
}

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

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

.submit-btn {
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(124, 195, 124, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 195, 124, 0.4);
    background: linear-gradient(135deg, hsl(124, 67%, 55%) 0%, hsl(124, 67%, 40%) 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .info-card,
    .contact-form {
        padding: 30px 20px;
        margin-bottom: 2rem;
    }
    
    .consultation-steps li {
        padding-left: 35px;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="hsl(124, 67%, 50%)" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="hsl(124, 67%, 35%)" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="hsl(124, 67%, 75%)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(124, 67%, 35%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 67%, 50%), hsl(124, 67%, 75%));
    border-radius: 2px;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(124, 67%, 50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.story-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(124, 67%, 35%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.story-title::before {
    content: '✨';
    margin-right: 15px;
    font-size: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 0;
}

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

.mission-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(124, 67%, 75%);
}

.mission-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-top-color: hsl(124, 67%, 50%);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: hsl(124, 67%, 50%);
}

.mission-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(124, 67%, 35%);
    margin-bottom: 15px;
}

.mission-text {
    color: #6c757d;
    line-height: 1.6;
}

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

.about-secondary-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(124, 67%, 50%, 0.3), hsl(124, 67%, 75%, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.highlight-box {
    background: linear-gradient(135deg, hsl(124, 67%, 75%, 0.2), hsl(124, 67%, 50%, 0.2));
    border: 2px solid hsl(124, 67%, 75%);
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    position: relative;
}

.highlight-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(124, 67%, 50%);
    font-weight: bold;
}

.highlight-text {
    font-size: 1.3rem;
    font-style: italic;
    color: hsl(124, 67%, 35%);
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-card {
        padding: 25px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-hero-image,
    .about-secondary-image {
        height: 300px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(124, 67%, 75%);
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(124, 67%, 75%);
    transform: translateX(5px);
  }
  
  footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  footer .contact-info {
    margin-bottom: 1rem;
  }
  
  footer .contact-info i {
    color: hsl(124, 67%, 75%);
    margin-right: 0.5rem;
    width: 20px;
  }
  
  footer .footer-links {
    list-style: none;
    padding: 0;
  }
  
  footer .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 50%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    border: none;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    color: white;
    border: 2px solid hsl(124, 67%, 75%);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    footer .row > div {
      margin-bottom: 2rem;
    }
    
    .cookie-notice .btn {
      width: 100%;
      margin-bottom: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(124, 67%, 50%);
            --secondary-color: hsl(124, 67%, 35%);
            --accent-color: hsl(124, 67%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .logo-container:hover img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg);
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

.services-title {
    color: hsl(124, 67%, 35%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.services-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, hsl(124, 67%, 50%), hsl(124, 67%, 75%));
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(124, 67, 50, 0.15);
    border-color: hsl(124, 67%, 75%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(124, 67%, 50%), hsl(124, 67%, 35%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(124, 67%, 35%), hsl(124, 67%, 50%));
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-title {
    color: hsl(124, 67%, 35%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    color: hsl(124, 67%, 50%);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(124, 67%, 95%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(124, 67%, 50%);
}

.service-conditions h6 {
    color: hsl(124, 67%, 35%);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 15px;
}

.service-conditions li {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 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 xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(124, 67%, 35%);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

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

.benefits-list li {
    padding: 12px 0;
    color: #555;
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
}

.newsletter-form {
    margin-top: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #fff;
    outline: none;
}

.email-input:focus {
    border-color: hsl(124, 67%, 50%);
    box-shadow: 0 0 0 3px rgba(124, 67, 50, 0.1);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: #999;
    font-weight: 300;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(45deg, hsl(124, 67%, 50%), hsl(124, 67%, 35%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 67, 50, 0.3);
    background: linear-gradient(45deg, hsl(124, 67%, 45%), hsl(124, 67%, 30%));
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:active {
    transform: translateY(-1px);
}

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-container {
    height: 600px;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials-scroll {
    animation: scrollUp 40s linear infinite;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@keyframes scrollUp {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 5px solid hsl(124, 67%, 75%);
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(124, 67%, 50%);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid hsl(124, 67%, 75%);
    padding-top: 15px;
}

.author-name {
    font-weight: 600;
    color: hsl(124, 67%, 35%);
    font-size: 1.1rem;
}

.author-location {
    color: #666;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-container {
        height: 500px;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(124, 67%, 75%);
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(124, 67%, 75%);
    transform: translateX(5px);
  }
  
  footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  footer .contact-info {
    margin-bottom: 1rem;
  }
  
  footer .contact-info i {
    color: hsl(124, 67%, 75%);
    margin-right: 0.5rem;
    width: 20px;
  }
  
  footer .footer-links {
    list-style: none;
    padding: 0;
  }
  
  footer .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 50%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    border: none;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    color: white;
    border: 2px solid hsl(124, 67%, 75%);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    footer .row > div {
      margin-bottom: 2rem;
    }
    
    .cookie-notice .btn {
      width: 100%;
      margin-bottom: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(124, 67%, 50%);
            --secondary-color: hsl(124, 67%, 35%);
            --accent-color: hsl(124, 67%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .logo-container:hover img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg);
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #d4a574;
}

.terms-title {
    font-size: 2.8em;
    color: #1a472a;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.terms-subtitle {
    font-size: 1.2em;
    color: #6c757d;
    font-style: italic;
}

.terms-section {
    margin-bottom: 35px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #d4a574;
}

.section-title {
    font-size: 1.6em;
    color: #1a472a;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-content {
    text-align: justify;
    margin-bottom: 15px;
}

.terms-list {
    padding-left: 25px;
    margin: 15px 0;
}

.terms-list li {
    margin-bottom: 10px;
    position: relative;
}

.terms-list li::marker {
    color: #d4a574;
    font-weight: bold;
}

.highlight-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #f39c12;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #dee2e6;
}

footer {
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(124, 67%, 75%);
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(124, 67%, 75%);
    transform: translateX(5px);
  }
  
  footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  footer .contact-info {
    margin-bottom: 1rem;
  }
  
  footer .contact-info i {
    color: hsl(124, 67%, 75%);
    margin-right: 0.5rem;
    width: 20px;
  }
  
  footer .footer-links {
    list-style: none;
    padding: 0;
  }
  
  footer .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 50%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    border: none;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    color: white;
    border: 2px solid hsl(124, 67%, 75%);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    footer .row > div {
      margin-bottom: 2rem;
    }
    
    .cookie-notice .btn {
      width: 100%;
      margin-bottom: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(124, 67%, 50%);
            --secondary-color: hsl(124, 67%, 35%);
            --accent-color: hsl(124, 67%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .logo-container:hover img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg);
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

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

.faq-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(124, 67%, 90%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.faq-accordion {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.faq-item {
    border-bottom: 1px solid hsl(124, 67%, 95%);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(124, 67%, 35%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: hsl(124, 67%, 98%);
    color: hsl(124, 67%, 30%);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: hsl(124, 67%, 50%);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-question.active::after {
    transform: rotate(45deg);
    color: hsl(124, 67%, 35%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: hsl(124, 67%, 98%);
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: hsl(124, 67%, 25%);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 20px 20px 20px;
    }
    
    .faq-accordion {
        margin-bottom: 20px;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="hsl(124, 67%, 50%)" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="hsl(124, 67%, 35%)" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="hsl(124, 67%, 75%)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(124, 67%, 35%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 67%, 50%), hsl(124, 67%, 75%));
    border-radius: 2px;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(124, 67%, 50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.story-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(124, 67%, 35%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.story-title::before {
    content: '✨';
    margin-right: 15px;
    font-size: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 0;
}

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

.mission-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(124, 67%, 75%);
}

.mission-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-top-color: hsl(124, 67%, 50%);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: hsl(124, 67%, 50%);
}

.mission-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(124, 67%, 35%);
    margin-bottom: 15px;
}

.mission-text {
    color: #6c757d;
    line-height: 1.6;
}

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

.about-secondary-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(124, 67%, 50%, 0.3), hsl(124, 67%, 75%, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.highlight-box {
    background: linear-gradient(135deg, hsl(124, 67%, 75%, 0.2), hsl(124, 67%, 50%, 0.2));
    border: 2px solid hsl(124, 67%, 75%);
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    position: relative;
}

.highlight-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(124, 67%, 50%);
    font-weight: bold;
}

.highlight-text {
    font-size: 1.3rem;
    font-style: italic;
    color: hsl(124, 67%, 35%);
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-card {
        padding: 25px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-hero-image,
    .about-secondary-image {
        height: 300px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 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 xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(124, 67%, 35%);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

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

.benefits-list li {
    padding: 12px 0;
    color: #555;
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
}

.newsletter-form {
    margin-top: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #fff;
    outline: none;
}

.email-input:focus {
    border-color: hsl(124, 67%, 50%);
    box-shadow: 0 0 0 3px rgba(124, 67, 50, 0.1);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: #999;
    font-weight: 300;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(45deg, hsl(124, 67%, 50%), hsl(124, 67%, 35%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 67, 50, 0.3);
    background: linear-gradient(45deg, hsl(124, 67%, 45%), hsl(124, 67%, 30%));
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:active {
    transform: translateY(-1px);
}

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(124, 67%, 75%);
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(124, 67%, 75%);
    transform: translateX(5px);
  }
  
  footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  footer .contact-info {
    margin-bottom: 1rem;
  }
  
  footer .contact-info i {
    color: hsl(124, 67%, 75%);
    margin-right: 0.5rem;
    width: 20px;
  }
  
  footer .footer-links {
    list-style: none;
    padding: 0;
  }
  
  footer .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 50%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    border: none;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    color: white;
    border: 2px solid hsl(124, 67%, 75%);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    footer .row > div {
      margin-bottom: 2rem;
    }
    
    .cookie-notice .btn {
      width: 100%;
      margin-bottom: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(124, 67%, 50%);
            --secondary-color: hsl(124, 67%, 35%);
            --accent-color: hsl(124, 67%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .logo-container:hover img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(90deg);
            transform: rotate(360deg);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: hsl(124, 67%, 75%);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2.5rem;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0.8rem;
    font-size: 1.2rem;
}

.cta-buttons {
    margin: 3rem 0;
}

.btn-primary-custom {
    background: white;
    color: hsl(124, 67%, 35%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: hsl(124, 67%, 35%);
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: white;
    color: hsl(124, 67%, 35%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-image-container {
    margin-top: 4rem;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .hero-image {
        height: 300px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-container {
    height: 600px;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials-scroll {
    animation: scrollUp 40s linear infinite;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@keyframes scrollUp {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 5px solid hsl(124, 67%, 75%);
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(124, 67%, 50%);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid hsl(124, 67%, 75%);
    padding-top: 15px;
}

.author-name {
    font-weight: 600;
    color: hsl(124, 67%, 35%);
    font-size: 1.1rem;
}

.author-location {
    color: #666;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-container {
        height: 500px;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

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

.services-title {
    color: hsl(124, 67%, 35%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.services-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, hsl(124, 67%, 50%), hsl(124, 67%, 75%));
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(124, 67, 50, 0.15);
    border-color: hsl(124, 67%, 75%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(124, 67%, 50%), hsl(124, 67%, 35%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(124, 67%, 35%), hsl(124, 67%, 50%));
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-title {
    color: hsl(124, 67%, 35%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    color: hsl(124, 67%, 50%);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(124, 67%, 95%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(124, 67%, 50%);
}

.service-conditions h6 {
    color: hsl(124, 67%, 35%);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 15px;
}

.service-conditions li {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 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 xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(124, 67%, 35%);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

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

.benefits-list li {
    padding: 12px 0;
    color: #555;
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
}

.newsletter-form {
    margin-top: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #fff;
    outline: none;
}

.email-input:focus {
    border-color: hsl(124, 67%, 50%);
    box-shadow: 0 0 0 3px rgba(124, 67, 50, 0.1);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: #999;
    font-weight: 300;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(45deg, hsl(124, 67%, 50%), hsl(124, 67%, 35%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 67, 50, 0.3);
    background: linear-gradient(45deg, hsl(124, 67%, 45%), hsl(124, 67%, 30%));
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:active {
    transform: translateY(-1px);
}

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="snowflakes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="12" cy="8" r="0.5" fill="rgba(255,255,255,0.08)"/><circle cx="18" cy="15" r="1.5" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23snowflakes)"/></svg>') repeat;
    opacity: 0.3;
}

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

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(124, 67%, 75%);
    font-size: 1.3rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.info-title {
    color: hsl(124, 67%, 35%);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.consultation-steps {
    list-style: none;
    padding: 0;
}

.consultation-steps li {
    padding: 15px 0;
    border-bottom: 1px solid hsl(124, 67%, 75%);
    color: #666;
    font-size: 1rem;
    position: relative;
    padding-left: 40px;
}

.consultation-steps li:before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 15px;
    background: hsl(124, 67%, 50%);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.consultation-steps {
    counter-reset: step-counter;
}

.working-hours {
    background: hsl(124, 67%, 75%);
    border-radius: 15px;
    padding: 25px;
    margin-top: 2rem;
    text-align: center;
}

.working-hours h4 {
    color: hsl(124, 67%, 35%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.working-hours p {
    color: hsl(124, 67%, 25%);
    font-weight: 500;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.form-title {
    color: hsl(124, 67%, 35%);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: hsl(124, 67%, 35%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid hsl(124, 67%, 75%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: hsl(124, 67%, 50%);
    box-shadow: 0 0 0 3px rgba(124, 195, 124, 0.1);
    transform: translateY(-2px);
}

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

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

.submit-btn {
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(124, 195, 124, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 195, 124, 0.4);
    background: linear-gradient(135deg, hsl(124, 67%, 55%) 0%, hsl(124, 67%, 40%) 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .info-card,
    .contact-form {
        padding: 30px 20px;
        margin-bottom: 2rem;
    }
    
    .consultation-steps li {
        padding-left: 35px;
    }
}

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

.advantages-title {
    color: hsl(124, 67%, 35%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.advantages-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 75%) 100%);
    border-radius: 2px;
}

.advantages-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 75%) 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 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(124, 67%, 75%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 50%) 100%);
}

.advantage-icon i {
    font-size: 28px;
    color: white;
}

.advantage-title {
    color: hsl(124, 67%, 35%);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.advantage-description {
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantage-card {
        margin-bottom: 30px;
        padding: 25px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 24px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(124, 67%, 50%) 0%, hsl(124, 67%, 35%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

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

.faq-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(124, 67%, 90%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.faq-accordion {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.faq-item {
    border-bottom: 1px solid hsl(124, 67%, 95%);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(124, 67%, 35%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: hsl(124, 67%, 98%);
    color: hsl(124, 67%, 30%);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: hsl(124, 67%, 50%);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-question.active::after {
    transform: rotate(45deg);
    color: hsl(124, 67%, 35%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: hsl(124, 67%, 98%);
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: hsl(124, 67%, 25%);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 20px 20px 20px;
    }
    
    .faq-accordion {
        margin-bottom: 20px;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="hsl(124, 67%, 50%)" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="hsl(124, 67%, 35%)" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="hsl(124, 67%, 75%)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(124, 67%, 35%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 67%, 50%), hsl(124, 67%, 75%));
    border-radius: 2px;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(124, 67%, 50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.story-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(124, 67%, 35%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.story-title::before {
    content: '✨';
    margin-right: 15px;
    font-size: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 0;
}

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

.mission-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(124, 67%, 75%);
}

.mission-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-top-color: hsl(124, 67%, 50%);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: hsl(124, 67%, 50%);
}

.mission-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(124, 67%, 35%);
    margin-bottom: 15px;
}

.mission-text {
    color: #6c757d;
    line-height: 1.6;
}

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

.about-secondary-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(124, 67%, 50%, 0.3), hsl(124, 67%, 75%, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.highlight-box {
    background: linear-gradient(135deg, hsl(124, 67%, 75%, 0.2), hsl(124, 67%, 50%, 0.2));
    border: 2px solid hsl(124, 67%, 75%);
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    position: relative;
}

.highlight-box::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(124, 67%, 50%);
    font-weight: bold;
}

.highlight-text {
    font-size: 1.3rem;
    font-style: italic;
    color: hsl(124, 67%, 35%);
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-card {
        padding: 25px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-hero-image,
    .about-secondary-image {
        height: 300px;
    }
}

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsla(124, 67%, 75%, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, hsla(124, 67%, 50%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-title {
    color: hsl(124, 67%, 35%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.stats-subtitle {
    color: hsl(124, 67%, 40%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.stat-circle {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 4px solid hsl(124, 67%, 90%);
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, hsl(124, 67%, 50%) 0deg, hsl(124, 67%, 75%) 120deg, hsl(124, 67%, 50%) 240deg, hsl(124, 67%, 35%) 360deg);
    border-radius: 50%;
    animation: rotate 8s linear infinite;
    opacity: 0.1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-circle:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: hsl(124, 67%, 50%);
}

.stat-icon {
    font-size: 2.5rem;
    color: hsl(124, 67%, 50%);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: hsl(124, 67%, 35%);
    line-height: 1;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(124, 67%, 40%);
    text-align: center;
    font-weight: 600;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-circle {
    transform: translateY(-10px) scale(1.05);
}

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

.stat-description {
    color: hsl(124, 67%, 45%);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .stat-circle {
        width: 150px;
        height: 150px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stats-title {
        font-size: 2.2rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
  }
  
  footer h5 {
    color: hsl(124, 67%, 75%);
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
  }
  
  footer a:hover {
    color: hsl(124, 67%, 75%);
    transform: translateX(5px);
  }
  
  footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  footer .contact-info {
    margin-bottom: 1rem;
  }
  
  footer .contact-info i {
    color: hsl(124, 67%, 75%);
    margin-right: 0.5rem;
    width: 20px;
  }
  
  footer .footer-links {
    list-style: none;
    padding: 0;
  }
  
  footer .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(124, 67%, 35%) 0%, hsl(124, 67%, 50%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    border: none;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    color: white;
    border: 2px solid hsl(124, 67%, 75%);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(124, 67%, 75%);
    color: hsl(124, 67%, 25%);
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    footer .row > div {
      margin-bottom: 2rem;
    }
    
    .cookie-notice .btn {
      width: 100%;
      margin-bottom: 0.5rem;
    }
  }