:root {
            --primary-color: hsl(122, 66%, 34%);
            --secondary-color: hsl(122, 66%, 19%);
            --accent-color: hsl(122, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-1px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(10deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 4px 0;
                text-align: center;
            }
        }

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

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(122, 185, 122, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(122, 66%, 19%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.content-block {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(122, 185, 122, 0.2);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.block-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(122, 66%, 34%);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    margin: 40px 0;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 5px solid rgba(122, 185, 122, 0.3);
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    color: hsl(122, 66%, 34%);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, hsl(122, 66%, 59%), transparent);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .story-grid.reverse {
        direction: rtl;
    }
    
    .story-grid.reverse > * {
        direction: ltr;
    }
}

.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(122, 66%, 59%), hsl(122, 66%, 34%));
    opacity: 0.1;
    animation: bounce 3s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 1s;
}

.decorative-element:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

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

.mission-values {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    color: white;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.mission-values::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>');
    opacity: 0.5;
}

.mission-values .block-title {
    color: hsl(122, 66%, 59%);
}

.mission-values .block-text {
    color: rgba(255, 255, 255, 0.9);
}

.advantages-section {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-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="60" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

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

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

.section-subtitle {
    color: hsl(122, 66%, 59%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(122, 66, 59, 0.1), transparent);
    transition: left 0.6s ease;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122, 66, 34, 0.2);
    border-color: hsl(122, 66%, 59%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(122, 66%, 34%), hsl(122, 66%, 59%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(122, 66, 34, 0.3);
}

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

.advantage-title {
    color: hsl(122, 66%, 19%);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        margin-bottom: 25px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.statistics-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="60" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

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

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

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

.section-subtitle {
    color: hsl(122, 66%, 59%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 3.5rem;
    color: hsl(122, 66%, 59%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(122, 66%, 59%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card:hover .stat-label {
    color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
    
    .stat-icon {
        font-size: 2.8rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(122, 66%, 19%) 0%, hsl(122, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(122, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(122, 66%, 59%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(122, 66%, 59%);
    text-decoration: none;
    font-weight: 500;
}

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

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

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

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid hsl(122, 66%, 59%);
}

.cookie-notice h6 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cookie-notice p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-success {
    background-color: hsl(122, 66%, 59%);
    border-color: hsl(122, 66%, 59%);
    color: hsl(122, 66%, 19%);
}

.cookie-notice .btn-success:hover {
    background-color: white;
    border-color: white;
    color: hsl(122, 66%, 19%);
    transform: translateY(-2px);
}

.cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.cookie-notice.hidden {
    display: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(122, 66%, 34%);
            --secondary-color: hsl(122, 66%, 19%);
            --accent-color: hsl(122, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-1px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(10deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 4px 0;
                text-align: center;
            }
        }

.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-policy h1 {
    color: #2c3e50;
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 15px;
}

.privacy-policy h2 {
    color: #34495e;
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid #3498db;
    background: rgba(255,255,255,0.3);
    padding: 15px 20px;
    border-radius: 8px;
}

.privacy-policy h3 {
    color: #2980b9;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-policy p {
    margin-bottom: 18px;
    text-align: justify;
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.privacy-policy ul {
    margin: 20px 0;
    padding-left: 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 20px 30px;
}

.privacy-policy li {
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 500;
}

.privacy-policy strong {
    color: #e74c3c;
    font-weight: 700;
}

.highlight-box {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.data-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.data-type-card {
    background: rgba(255,255,255,0.4);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #3498db;
    transition: transform 0.3s ease;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(122, 66%, 19%) 0%, hsl(122, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(122, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(122, 66%, 59%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(122, 66%, 59%);
    text-decoration: none;
    font-weight: 500;
}

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

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

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

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid hsl(122, 66%, 59%);
}

.cookie-notice h6 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cookie-notice p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-success {
    background-color: hsl(122, 66%, 59%);
    border-color: hsl(122, 66%, 59%);
    color: hsl(122, 66%, 19%);
}

.cookie-notice .btn-success:hover {
    background-color: white;
    border-color: white;
    color: hsl(122, 66%, 19%);
    transform: translateY(-2px);
}

.cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.cookie-notice.hidden {
    display: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(122, 66%, 34%);
            --secondary-color: hsl(122, 66%, 19%);
            --accent-color: hsl(122, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-1px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(10deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 4px 0;
                text-align: center;
            }
        }

.cookies-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.policy-header h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-header p {
    color: #7f8c8d;
    font-size: 1.1em;
    margin: 0;
}

.policy-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 40px;
    padding: 25px;
    border-left: 4px solid #ff6b6b;
    background: #f8f9fa;
    border-radius: 0 10px 10px 0;
}

.policy-section h2 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.policy-section h2::before {
    content: "🍪";
    margin-right: 10px;
    font-size: 1.2em;
}

.policy-section h3 {
    color: #34495e;
    font-size: 1.2em;
    margin: 20px 0 10px 0;
    padding-left: 20px;
    border-left: 2px solid #4ecdc4;
}

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

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.cookie-type {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e74c3c;
    transition: transform 0.3s ease;
}

.cookie-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.cookie-type h4 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.consent-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.consent-notice h3 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

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

.last-updated {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 40px;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 10px;
}

ul {
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
}

strong {
    color: #2c3e50;
}

footer {
    background: linear-gradient(135deg, hsl(122, 66%, 19%) 0%, hsl(122, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(122, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(122, 66%, 59%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(122, 66%, 59%);
    text-decoration: none;
    font-weight: 500;
}

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

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

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

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid hsl(122, 66%, 59%);
}

.cookie-notice h6 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cookie-notice p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-success {
    background-color: hsl(122, 66%, 59%);
    border-color: hsl(122, 66%, 59%);
    color: hsl(122, 66%, 19%);
}

.cookie-notice .btn-success:hover {
    background-color: white;
    border-color: white;
    color: hsl(122, 66%, 19%);
    transform: translateY(-2px);
}

.cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.cookie-notice.hidden {
    display: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(122, 66%, 34%);
            --secondary-color: hsl(122, 66%, 19%);
            --accent-color: hsl(122, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-1px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(10deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 4px 0;
                text-align: center;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    padding: 80px 0;
    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"><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="60" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

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

.contact-info h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-info p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.consultation-process {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: white;
}

.step-number {
    background: hsl(122, 66%, 59%);
    color: hsl(122, 66%, 19%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.working-hours {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.working-hours h4 {
    color: hsl(122, 66%, 59%);
    margin-bottom: 1rem;
    font-weight: 600;
}

.working-hours p {
    color: white;
    margin-bottom: 0.5rem;
}

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

.contact-form h3 {
    color: hsl(122, 66%, 19%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    color: hsl(122, 66%, 19%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.form-control {
    border: 2px solid hsl(122, 66%, 59%);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(122, 66%, 19%);
}

.form-control:focus {
    border-color: hsl(122, 66%, 34%);
    box-shadow: 0 0 0 0.2rem rgba(122, 186, 122, 0.25);
    outline: none;
    background: white;
    color: hsl(122, 66%, 19%);
}

.form-control::placeholder {
    color: hsl(122, 66%, 59%);
    opacity: 0.7;
}

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

.submit-btn {
    background: linear-gradient(45deg, hsl(122, 66%, 34%), hsl(122, 66%, 59%));
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(122, 186, 122, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(122, 186, 122, 0.4);
    background: linear-gradient(45deg, hsl(122, 66%, 39%), hsl(122, 66%, 64%));
}

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

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .consultation-process {
        padding: 1.5rem;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(122, 185, 122, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(122, 66%, 19%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.content-block {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(122, 185, 122, 0.2);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.block-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(122, 66%, 34%);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    margin: 40px 0;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 5px solid rgba(122, 185, 122, 0.3);
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    color: hsl(122, 66%, 34%);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, hsl(122, 66%, 59%), transparent);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .story-grid.reverse {
        direction: rtl;
    }
    
    .story-grid.reverse > * {
        direction: ltr;
    }
}

.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(122, 66%, 59%), hsl(122, 66%, 34%));
    opacity: 0.1;
    animation: bounce 3s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 1s;
}

.decorative-element:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

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

.mission-values {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    color: white;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.mission-values::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>');
    opacity: 0.5;
}

.mission-values .block-title {
    color: hsl(122, 66%, 59%);
}

.mission-values .block-text {
    color: rgba(255, 255, 255, 0.9);
}

footer {
    background: linear-gradient(135deg, hsl(122, 66%, 19%) 0%, hsl(122, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(122, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(122, 66%, 59%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(122, 66%, 59%);
    text-decoration: none;
    font-weight: 500;
}

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

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

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

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid hsl(122, 66%, 59%);
}

.cookie-notice h6 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cookie-notice p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-success {
    background-color: hsl(122, 66%, 59%);
    border-color: hsl(122, 66%, 59%);
    color: hsl(122, 66%, 19%);
}

.cookie-notice .btn-success:hover {
    background-color: white;
    border-color: white;
    color: hsl(122, 66%, 19%);
    transform: translateY(-2px);
}

.cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.cookie-notice.hidden {
    display: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(122, 66%, 34%);
            --secondary-color: hsl(122, 66%, 19%);
            --accent-color: hsl(122, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-1px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(10deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 4px 0;
                text-align: center;
            }
        }

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

.services-title {
    color: hsl(122, 66%, 19%);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.services-subtitle {
    color: hsl(122, 66%, 34%);
    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;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid hsl(122, 66%, 59%);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left-color: hsl(122, 66%, 34%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(122, 66%, 59%), hsl(122, 66%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

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

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.service-conditions {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    border-left: 3px solid hsl(122, 66%, 59%);
}

.service-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .service-layout {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin: 0 auto 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 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.08)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(0px) translateX(-5px); }
    75% { transform: translateY(10px) translateX(3px); }
    100% { transform: translateY(0px) translateX(0px); }
}

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

.newsletter-title {
    color: hsl(122, 66%, 19%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.newsletter-title::after {
    content: '🎈';
    position: absolute;
    right: -40px;
    top: -10px;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.newsletter-description {
    color: hsl(122, 66%, 25%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: center;
}

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

.benefits-list li {
    color: hsl(122, 66%, 30%);
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

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

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 20px;
    border: 2px solid hsl(122, 66%, 59%);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    border-color: hsl(122, 66%, 34%);
    box-shadow: 0 0 0 4px rgba(122, 193, 67, 0.2);
    background: white;
}

.email-input::placeholder {
    color: hsl(122, 66%, 45%);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(122, 66%, 34%), hsl(122, 66%, 59%));
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(122, 193, 67, 0.3);
    min-width: 180px;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(122, 193, 67, 0.4);
    background: linear-gradient(45deg, hsl(122, 66%, 39%), hsl(122, 66%, 64%));
}

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

.privacy-note {
    font-size: 0.85rem;
    color: hsl(122, 66%, 40%);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .newsletter-card {
        margin: 0 20px;
        padding: 40px 25px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-title::after {
        right: -30px;
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .subscribe-btn {
        min-width: 100%;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 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.08)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

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

.section-subtitle {
    color: hsl(122, 66%, 59%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonials-scroll {
    height: 500px;
    overflow-y: auto;
    padding-right: 15px;
    scrollbar-width: thin;
    scrollbar-color: hsl(122, 66%, 59%) transparent;
}

.testimonials-scroll::-webkit-scrollbar {
    width: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: hsl(122, 66%, 59%);
    border-radius: 10px;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 5px solid hsl(122, 66%, 59%);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

.testimonial-text {
    color: hsl(122, 66%, 19%);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid hsl(122, 66%, 59%);
}

.author-name {
    font-weight: 700;
    color: hsl(122, 66%, 34%);
    font-size: 1.1rem;
}

.author-location {
    color: hsl(122, 66%, 59%);
    font-size: 0.9rem;
    font-weight: 500;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-left: 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-scroll {
        height: 400px;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(122, 66%, 19%) 0%, hsl(122, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(122, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(122, 66%, 59%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(122, 66%, 59%);
    text-decoration: none;
    font-weight: 500;
}

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

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

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

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid hsl(122, 66%, 59%);
}

.cookie-notice h6 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cookie-notice p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-success {
    background-color: hsl(122, 66%, 59%);
    border-color: hsl(122, 66%, 59%);
    color: hsl(122, 66%, 19%);
}

.cookie-notice .btn-success:hover {
    background-color: white;
    border-color: white;
    color: hsl(122, 66%, 19%);
    transform: translateY(-2px);
}

.cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.cookie-notice.hidden {
    display: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(122, 66%, 34%);
            --secondary-color: hsl(122, 66%, 19%);
            --accent-color: hsl(122, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-1px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(10deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 4px 0;
                text-align: center;
            }
        }

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.terms-title {
    text-align: center;
    color: #e74c3c;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 15px;
}

.terms-section {
    margin-bottom: 35px;
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #3498db;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section-title {
    color: #2980b9;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-text {
    text-align: justify;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.important-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: bold;
    color: #856404;
}

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

.terms-list li {
    margin-bottom: 8px;
    color: #34495e;
}

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

footer {
    background: linear-gradient(135deg, hsl(122, 66%, 19%) 0%, hsl(122, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(122, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(122, 66%, 59%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(122, 66%, 59%);
    text-decoration: none;
    font-weight: 500;
}

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

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

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

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid hsl(122, 66%, 59%);
}

.cookie-notice h6 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cookie-notice p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-success {
    background-color: hsl(122, 66%, 59%);
    border-color: hsl(122, 66%, 59%);
    color: hsl(122, 66%, 19%);
}

.cookie-notice .btn-success:hover {
    background-color: white;
    border-color: white;
    color: hsl(122, 66%, 19%);
    transform: translateY(-2px);
}

.cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.cookie-notice.hidden {
    display: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(122, 66%, 34%);
            --secondary-color: hsl(122, 66%, 19%);
            --accent-color: hsl(122, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-1px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(10deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 4px 0;
                text-align: center;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 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="60" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

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

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

.faq-subtitle {
    color: hsl(122, 66%, 59%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.faq-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(122, 66, 59, 0.1), transparent);
    transition: left 0.6s ease;
}

.faq-card:hover::before {
    left: 100%;
}

.faq-card:hover {
    transform: translateY(-8px);
    border-color: hsl(122, 66%, 59%);
    box-shadow: 0 25px 50px rgba(122, 66, 59, 0.2);
}

.faq-question {
    color: hsl(122, 66%, 19%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.faq-question::before {
    content: '🎈';
    font-size: 1.5rem;
    margin-right: 0.8rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.faq-answer {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.faq-highlight {
    color: hsl(122, 66%, 34%);
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
}

.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatBubble 15s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 5s;
}

.decorative-element:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(122, 185, 122, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(122, 66%, 19%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.content-block {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(122, 185, 122, 0.2);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.block-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(122, 66%, 34%);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    margin: 40px 0;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 5px solid rgba(122, 185, 122, 0.3);
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    color: hsl(122, 66%, 34%);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, hsl(122, 66%, 59%), transparent);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .story-grid.reverse {
        direction: rtl;
    }
    
    .story-grid.reverse > * {
        direction: ltr;
    }
}

.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(122, 66%, 59%), hsl(122, 66%, 34%));
    opacity: 0.1;
    animation: bounce 3s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 1s;
}

.decorative-element:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

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

.mission-values {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    color: white;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.mission-values::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>');
    opacity: 0.5;
}

.mission-values .block-title {
    color: hsl(122, 66%, 59%);
}

.mission-values .block-text {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 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.08)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(0px) translateX(-5px); }
    75% { transform: translateY(10px) translateX(3px); }
    100% { transform: translateY(0px) translateX(0px); }
}

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

.newsletter-title {
    color: hsl(122, 66%, 19%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.newsletter-title::after {
    content: '🎈';
    position: absolute;
    right: -40px;
    top: -10px;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.newsletter-description {
    color: hsl(122, 66%, 25%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: center;
}

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

.benefits-list li {
    color: hsl(122, 66%, 30%);
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

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

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 20px;
    border: 2px solid hsl(122, 66%, 59%);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    border-color: hsl(122, 66%, 34%);
    box-shadow: 0 0 0 4px rgba(122, 193, 67, 0.2);
    background: white;
}

.email-input::placeholder {
    color: hsl(122, 66%, 45%);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(122, 66%, 34%), hsl(122, 66%, 59%));
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(122, 193, 67, 0.3);
    min-width: 180px;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(122, 193, 67, 0.4);
    background: linear-gradient(45deg, hsl(122, 66%, 39%), hsl(122, 66%, 64%));
}

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

.privacy-note {
    font-size: 0.85rem;
    color: hsl(122, 66%, 40%);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .newsletter-card {
        margin: 0 20px;
        padding: 40px 25px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-title::after {
        right: -30px;
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .subscribe-btn {
        min-width: 100%;
    }
}

footer {
    background: linear-gradient(135deg, hsl(122, 66%, 19%) 0%, hsl(122, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(122, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(122, 66%, 59%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(122, 66%, 59%);
    text-decoration: none;
    font-weight: 500;
}

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

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

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

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid hsl(122, 66%, 59%);
}

.cookie-notice h6 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cookie-notice p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-success {
    background-color: hsl(122, 66%, 59%);
    border-color: hsl(122, 66%, 59%);
    color: hsl(122, 66%, 19%);
}

.cookie-notice .btn-success:hover {
    background-color: white;
    border-color: white;
    color: hsl(122, 66%, 19%);
    transform: translateY(-2px);
}

.cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.cookie-notice.hidden {
    display: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(122, 66%, 34%);
            --secondary-color: hsl(122, 66%, 19%);
            --accent-color: hsl(122, 66%, 59%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: translateY(-2px);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-1px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(10deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 4px 0;
                text-align: center;
            }
        }

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(122, 200, 122, 0.1) 0%, transparent 70%);
    transform: rotate(-15deg);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

.hero-content {
    padding: 4rem 2rem 4rem 5rem;
    position: relative;
    z-index: 3;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 120%;
    height: 100%;
    object-fit: cover;
    shape-outside: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    margin-left: -20%;
    filter: brightness(1.1) contrast(1.05);
}

.floating-shape {
    position: absolute;
    background: hsl(122, 66%, 59%);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

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

.hero-badge {
    display: inline-block;
    background: hsl(122, 66%, 59%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    color: hsl(122, 66%, 85%);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-description {
    color: hsl(122, 66%, 90%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: justify;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.hero-features li {
    color: hsl(122, 66%, 95%);
    padding: 0.5rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.hero-features i {
    color: hsl(122, 66%, 59%);
    margin-right: 1rem;
    font-size: 1.2rem;
}

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

.btn-primary-hero {
    background: hsl(122, 66%, 59%);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary-hero:hover {
    background: hsl(122, 66%, 49%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
}

.btn-secondary-hero {
    background: transparent;
    border: 2px solid hsl(122, 66%, 59%);
    color: hsl(122, 66%, 59%);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: hsl(122, 66%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 2rem;
        order: 2;
    }
    
    .hero-image-wrapper {
        order: 1;
        height: 50vh;
    }
    
    .hero-image {
        width: 100%;
        margin-left: 0;
        clip-path: none;
        shape-outside: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        text-align: center;
        justify-content: center;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(122, 185, 122, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(122, 66%, 19%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.content-block {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(122, 185, 122, 0.2);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.block-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(122, 66%, 34%);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    margin: 40px 0;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 5px solid rgba(122, 185, 122, 0.3);
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    color: hsl(122, 66%, 34%);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, hsl(122, 66%, 59%), transparent);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .story-grid.reverse {
        direction: rtl;
    }
    
    .story-grid.reverse > * {
        direction: ltr;
    }
}

.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(122, 66%, 59%), hsl(122, 66%, 34%));
    opacity: 0.1;
    animation: bounce 3s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 1s;
}

.decorative-element:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

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

.mission-values {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    color: white;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.mission-values::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>');
    opacity: 0.5;
}

.mission-values .block-title {
    color: hsl(122, 66%, 59%);
}

.mission-values .block-text {
    color: rgba(255, 255, 255, 0.9);
}

.advantages-section {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-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="60" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

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

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

.section-subtitle {
    color: hsl(122, 66%, 59%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(122, 66, 59, 0.1), transparent);
    transition: left 0.6s ease;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122, 66, 34, 0.2);
    border-color: hsl(122, 66%, 59%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(122, 66%, 34%), hsl(122, 66%, 59%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(122, 66, 34, 0.3);
}

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

.advantage-title {
    color: hsl(122, 66%, 19%);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        margin-bottom: 25px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    padding: 80px 0;
    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"><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="60" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

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

.contact-info h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-info p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.consultation-process {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: white;
}

.step-number {
    background: hsl(122, 66%, 59%);
    color: hsl(122, 66%, 19%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.working-hours {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.working-hours h4 {
    color: hsl(122, 66%, 59%);
    margin-bottom: 1rem;
    font-weight: 600;
}

.working-hours p {
    color: white;
    margin-bottom: 0.5rem;
}

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

.contact-form h3 {
    color: hsl(122, 66%, 19%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    color: hsl(122, 66%, 19%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.form-control {
    border: 2px solid hsl(122, 66%, 59%);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(122, 66%, 19%);
}

.form-control:focus {
    border-color: hsl(122, 66%, 34%);
    box-shadow: 0 0 0 0.2rem rgba(122, 186, 122, 0.25);
    outline: none;
    background: white;
    color: hsl(122, 66%, 19%);
}

.form-control::placeholder {
    color: hsl(122, 66%, 59%);
    opacity: 0.7;
}

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

.submit-btn {
    background: linear-gradient(45deg, hsl(122, 66%, 34%), hsl(122, 66%, 59%));
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(122, 186, 122, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(122, 186, 122, 0.4);
    background: linear-gradient(45deg, hsl(122, 66%, 39%), hsl(122, 66%, 64%));
}

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

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .consultation-process {
        padding: 1.5rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 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.08)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

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

.section-subtitle {
    color: hsl(122, 66%, 59%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonials-scroll {
    height: 500px;
    overflow-y: auto;
    padding-right: 15px;
    scrollbar-width: thin;
    scrollbar-color: hsl(122, 66%, 59%) transparent;
}

.testimonials-scroll::-webkit-scrollbar {
    width: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: hsl(122, 66%, 59%);
    border-radius: 10px;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 5px solid hsl(122, 66%, 59%);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

.testimonial-text {
    color: hsl(122, 66%, 19%);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid hsl(122, 66%, 59%);
}

.author-name {
    font-weight: 700;
    color: hsl(122, 66%, 34%);
    font-size: 1.1rem;
}

.author-location {
    color: hsl(122, 66%, 59%);
    font-size: 0.9rem;
    font-weight: 500;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-left: 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-scroll {
        height: 400px;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

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

.services-title {
    color: hsl(122, 66%, 19%);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.services-subtitle {
    color: hsl(122, 66%, 34%);
    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;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid hsl(122, 66%, 59%);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left-color: hsl(122, 66%, 34%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(122, 66%, 59%), hsl(122, 66%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

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

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.service-conditions {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    border-left: 3px solid hsl(122, 66%, 59%);
}

.service-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .service-layout {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin: 0 auto 20px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 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="60" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

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

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

.faq-subtitle {
    color: hsl(122, 66%, 59%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.faq-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(122, 66, 59, 0.1), transparent);
    transition: left 0.6s ease;
}

.faq-card:hover::before {
    left: 100%;
}

.faq-card:hover {
    transform: translateY(-8px);
    border-color: hsl(122, 66%, 59%);
    box-shadow: 0 25px 50px rgba(122, 66, 59, 0.2);
}

.faq-question {
    color: hsl(122, 66%, 19%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.faq-question::before {
    content: '🎈';
    font-size: 1.5rem;
    margin-right: 0.8rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.faq-answer {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.faq-highlight {
    color: hsl(122, 66%, 34%);
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
}

.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatBubble 15s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 5s;
}

.decorative-element:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.statistics-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="60" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

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

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

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

.section-subtitle {
    color: hsl(122, 66%, 59%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 3.5rem;
    color: hsl(122, 66%, 59%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(122, 66%, 59%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card:hover .stat-label {
    color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
    
    .stat-icon {
        font-size: 2.8rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 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.08)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(0px) translateX(-5px); }
    75% { transform: translateY(10px) translateX(3px); }
    100% { transform: translateY(0px) translateX(0px); }
}

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

.newsletter-title {
    color: hsl(122, 66%, 19%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.newsletter-title::after {
    content: '🎈';
    position: absolute;
    right: -40px;
    top: -10px;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.newsletter-description {
    color: hsl(122, 66%, 25%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: center;
}

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

.benefits-list li {
    color: hsl(122, 66%, 30%);
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

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

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 20px;
    border: 2px solid hsl(122, 66%, 59%);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    border-color: hsl(122, 66%, 34%);
    box-shadow: 0 0 0 4px rgba(122, 193, 67, 0.2);
    background: white;
}

.email-input::placeholder {
    color: hsl(122, 66%, 45%);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(122, 66%, 34%), hsl(122, 66%, 59%));
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(122, 193, 67, 0.3);
    min-width: 180px;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(122, 193, 67, 0.4);
    background: linear-gradient(45deg, hsl(122, 66%, 39%), hsl(122, 66%, 64%));
}

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

.privacy-note {
    font-size: 0.85rem;
    color: hsl(122, 66%, 40%);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .newsletter-card {
        margin: 0 20px;
        padding: 40px 25px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-title::after {
        right: -30px;
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .subscribe-btn {
        min-width: 100%;
    }
}

footer {
    background: linear-gradient(135deg, hsl(122, 66%, 19%) 0%, hsl(122, 66%, 34%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand h3 {
    color: hsl(122, 66%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(122, 66%, 59%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(122, 66%, 59%);
    text-decoration: none;
    font-weight: 500;
}

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

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

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

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, hsl(122, 66%, 34%) 0%, hsl(122, 66%, 19%) 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid hsl(122, 66%, 59%);
}

.cookie-notice h6 {
    color: hsl(122, 66%, 59%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cookie-notice p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-success {
    background-color: hsl(122, 66%, 59%);
    border-color: hsl(122, 66%, 59%);
    color: hsl(122, 66%, 19%);
}

.cookie-notice .btn-success:hover {
    background-color: white;
    border-color: white;
    color: hsl(122, 66%, 19%);
    transform: translateY(-2px);
}

.cookie-notice .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.cookie-notice .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.cookie-notice.hidden {
    display: none;
}

@media (max-width: 768px) {
    .cookie-notice {
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}