:root {
            --primary-color: hsl(136, 52%, 46%);
            --secondary-color: hsl(136, 52%, 31%);
            --accent-color: hsl(136, 52%, 71%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(86deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
                background: rgba(136, 200, 146, 0.1);
                border-radius: 5px;
                padding-left: 10px;
            }
        }

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

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 15px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.content-block {
    margin-bottom: 50px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid hsl(136, 52%, 46%);
}

.content-block h2 {
    color: hsl(136, 52%, 31%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(136, 52%, 46%);
    border-radius: 2px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

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

.highlight-text {
    background: linear-gradient(120deg, hsl(136, 52%, 71%) 0%, hsl(136, 52%, 71%) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    padding: 2px 0;
    font-weight: 600;
}

.stats-row {
    background: hsl(136, 52%, 46%);
    color: white;
    padding: 40px 0;
    margin: 60px 0;
    border-radius: 15px;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.mission-values {
    background: linear-gradient(135deg, hsl(136, 52%, 31%) 0%, hsl(136, 52%, 46%) 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin: 40px 0;
}

.mission-values h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-values ul {
    list-style: none;
    padding: 0;
}

.mission-values li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-values li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(136, 52%, 71%);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .mission-values {
        padding: 30px;
    }
}

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

.advantages-title {
    color: hsl(136, 52%, 31%);
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
}

.advantages-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(136, 52%, 46%);
    border-radius: 2px;
}

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

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 71%) 100%);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: hsl(136, 52%, 71%);
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(136, 169, 146, 0.4);
}

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

.advantage-title {
    color: hsl(136, 52%, 31%);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 15px;
    text-align: center;
}

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

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantage-card {
        margin-bottom: 30px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 100%);
    padding: 80px 0;
    color: white;
    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="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    opacity: 0.3;
}

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

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

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(136, 52%, 71%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: hsl(136, 52%, 71%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: hsl(136, 52%, 31%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(136, 52%, 71%);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.4;
}

.progress-bar-custom {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(136, 52%, 71%), white);
    border-radius: 10px;
    transition: width 2s ease;
}

.graph-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    height: 100%;
}

.mini-chart {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 15px;
    position: relative;
    margin-top: 20px;
    overflow: hidden;
}

.chart-bars {
    display: flex;
    align-items: end;
    height: 100%;
    padding: 15px;
    gap: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, hsl(136, 52%, 71%), hsl(136, 52%, 46%));
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

.achievement-badge {
    display: inline-block;
    background: hsl(136, 52%, 71%);
    color: hsl(136, 52%, 31%);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

:root {
        --primary-color: hsl(136, 52%, 46%);
        --secondary-color: hsl(136, 52%, 31%);
        --accent-color: hsl(136, 52%, 71%);
    }

    footer {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }

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

    footer p, footer li {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.8rem;
    }

    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: var(--accent-color);
        transform: translateX(5px);
    }

    footer .list-unstyled li {
        padding: 0.3rem 0;
    }

    footer .border-top {
        border-color: rgba(255, 255, 255, 0.2) !important;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1050;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }

    .cookie-notice.show {
        transform: translateY(0);
    }

    .cookie-notice .btn {
        margin: 0.3rem;
        border-radius: 25px;
        padding: 0.6rem 1.5rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-notice .btn-accept {
        background-color: var(--accent-color);
        border: none;
        color: var(--secondary-color);
    }

    .cookie-notice .btn-accept:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice .btn-learn {
        background-color: transparent;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
    }

    .cookie-notice .btn-learn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        footer {
            text-align: center;
        }
        
        .cookie-notice .btn {
            display: block;
            width: 100%;
            margin: 0.5rem 0;
        }
    }

:root {
            --primary-color: hsl(136, 52%, 46%);
            --secondary-color: hsl(136, 52%, 31%);
            --accent-color: hsl(136, 52%, 71%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(86deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
                background: rgba(136, 200, 146, 0.1);
                border-radius: 5px;
                padding-left: 10px;
            }
        }

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

.privacy-policy h1 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #4CAF50;
    padding-bottom: 15px;
}

.privacy-policy h2 {
    color: #1e4d72;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: 600;
    padding: 15px 20px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.privacy-policy h3 {
    color: #2d5a87;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 500;
    border-left: 4px solid #4CAF50;
    padding-left: 15px;
}

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

.privacy-policy ul {
    background: rgba(255,255,255,0.8);
    padding: 20px 25px;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.privacy-policy li {
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 2px solid #4CAF50;
    margin-left: 15px;
}

.privacy-policy strong {
    color: #1e4d72;
    font-weight: 600;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #666;
    background: rgba(255,255,255,0.9);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border: 1px solid #4CAF50;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.2);
}

:root {
        --primary-color: hsl(136, 52%, 46%);
        --secondary-color: hsl(136, 52%, 31%);
        --accent-color: hsl(136, 52%, 71%);
    }

    footer {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }

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

    footer p, footer li {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.8rem;
    }

    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: var(--accent-color);
        transform: translateX(5px);
    }

    footer .list-unstyled li {
        padding: 0.3rem 0;
    }

    footer .border-top {
        border-color: rgba(255, 255, 255, 0.2) !important;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1050;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }

    .cookie-notice.show {
        transform: translateY(0);
    }

    .cookie-notice .btn {
        margin: 0.3rem;
        border-radius: 25px;
        padding: 0.6rem 1.5rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-notice .btn-accept {
        background-color: var(--accent-color);
        border: none;
        color: var(--secondary-color);
    }

    .cookie-notice .btn-accept:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice .btn-learn {
        background-color: transparent;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
    }

    .cookie-notice .btn-learn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        footer {
            text-align: center;
        }
        
        .cookie-notice .btn {
            display: block;
            width: 100%;
            margin: 0.5rem 0;
        }
    }

:root {
            --primary-color: hsl(136, 52%, 46%);
            --secondary-color: hsl(136, 52%, 31%);
            --accent-color: hsl(136, 52%, 71%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(86deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
                background: rgba(136, 200, 146, 0.1);
                border-radius: 5px;
                padding-left: 10px;
            }
        }

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

.cookies-policy h1 {
    color: #27ae60;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 4px solid #27ae60;
    padding-bottom: 15px;
}

.cookies-policy h2 {
    color: #2980b9;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 35px 0 20px 0;
    padding: 15px 0 10px 20px;
    border-left: 5px solid #2980b9;
    background: linear-gradient(90deg, rgba(41,128,185,0.1) 0%, transparent 100%);
    border-radius: 0 10px 10px 0;
}

.cookies-policy h3 {
    color: #8e44ad;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
    padding-left: 15px;
    border-left: 3px solid #8e44ad;
}

.cookies-policy p {
    margin-bottom: 18px;
    text-align: justify;
    padding: 0 10px;
    font-size: 1.05rem;
}

.cookies-policy ul {
    margin: 20px 0;
    padding-left: 30px;
}

.cookies-policy li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    position: relative;
}

.cookies-policy li::marker {
    color: #27ae60;
    font-weight: bold;
}

.cookie-type {
    background: linear-gradient(135deg, #fff 0%, #f1f3f4 100%);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.highlight-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border: 2px solid #27ae60;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71, #27ae60);
}

.gdpr-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #f39c12;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
}

.gdpr-notice::before {
    content: '⚖️';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
}

.consent-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

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

@media (max-width: 768px) {
    .cookies-policy {
        padding: 20px 15px;
    }
    
    .cookies-policy h1 {
        font-size: 2.2rem;
    }
    
    .cookies-policy h2 {
        font-size: 1.5rem;
    }
}

:root {
        --primary-color: hsl(136, 52%, 46%);
        --secondary-color: hsl(136, 52%, 31%);
        --accent-color: hsl(136, 52%, 71%);
    }

    footer {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }

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

    footer p, footer li {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.8rem;
    }

    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: var(--accent-color);
        transform: translateX(5px);
    }

    footer .list-unstyled li {
        padding: 0.3rem 0;
    }

    footer .border-top {
        border-color: rgba(255, 255, 255, 0.2) !important;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1050;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }

    .cookie-notice.show {
        transform: translateY(0);
    }

    .cookie-notice .btn {
        margin: 0.3rem;
        border-radius: 25px;
        padding: 0.6rem 1.5rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-notice .btn-accept {
        background-color: var(--accent-color);
        border: none;
        color: var(--secondary-color);
    }

    .cookie-notice .btn-accept:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice .btn-learn {
        background-color: transparent;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
    }

    .cookie-notice .btn-learn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        footer {
            text-align: center;
        }
        
        .cookie-notice .btn {
            display: block;
            width: 100%;
            margin: 0.5rem 0;
        }
    }

:root {
            --primary-color: hsl(136, 52%, 46%);
            --secondary-color: hsl(136, 52%, 31%);
            --accent-color: hsl(136, 52%, 71%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(86deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
                background: rgba(136, 200, 146, 0.1);
                border-radius: 5px;
                padding-left: 10px;
            }
        }

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 100%);
    color: white;
}

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

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: white;
    border-color: hsl(136, 52%, 71%);
    box-shadow: 0 0 0 0.2rem rgba(136, 204, 136, 0.25);
    outline: none;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    font-size: 16px;
}

.btn-submit {
    background: hsl(136, 52%, 71%);
    color: hsl(136, 52%, 31%);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
    background: white;
    color: hsl(136, 52%, 31%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.contact-info {
    padding-left: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid hsl(136, 52%, 71%);
    backdrop-filter: blur(5px);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(136, 52%, 71%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.6;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: hsl(136, 52%, 71%);
}

.info-text {
    line-height: 1.7;
    opacity: 0.9;
}

.working-hours {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .contact-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

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

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 15px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.content-block {
    margin-bottom: 50px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid hsl(136, 52%, 46%);
}

.content-block h2 {
    color: hsl(136, 52%, 31%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(136, 52%, 46%);
    border-radius: 2px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

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

.highlight-text {
    background: linear-gradient(120deg, hsl(136, 52%, 71%) 0%, hsl(136, 52%, 71%) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    padding: 2px 0;
    font-weight: 600;
}

.stats-row {
    background: hsl(136, 52%, 46%);
    color: white;
    padding: 40px 0;
    margin: 60px 0;
    border-radius: 15px;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.mission-values {
    background: linear-gradient(135deg, hsl(136, 52%, 31%) 0%, hsl(136, 52%, 46%) 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin: 40px 0;
}

.mission-values h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-values ul {
    list-style: none;
    padding: 0;
}

.mission-values li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-values li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(136, 52%, 71%);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .mission-values {
        padding: 30px;
    }
}

:root {
        --primary-color: hsl(136, 52%, 46%);
        --secondary-color: hsl(136, 52%, 31%);
        --accent-color: hsl(136, 52%, 71%);
    }

    footer {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }

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

    footer p, footer li {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.8rem;
    }

    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: var(--accent-color);
        transform: translateX(5px);
    }

    footer .list-unstyled li {
        padding: 0.3rem 0;
    }

    footer .border-top {
        border-color: rgba(255, 255, 255, 0.2) !important;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1050;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }

    .cookie-notice.show {
        transform: translateY(0);
    }

    .cookie-notice .btn {
        margin: 0.3rem;
        border-radius: 25px;
        padding: 0.6rem 1.5rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-notice .btn-accept {
        background-color: var(--accent-color);
        border: none;
        color: var(--secondary-color);
    }

    .cookie-notice .btn-accept:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice .btn-learn {
        background-color: transparent;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
    }

    .cookie-notice .btn-learn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        footer {
            text-align: center;
        }
        
        .cookie-notice .btn {
            display: block;
            width: 100%;
            margin: 0.5rem 0;
        }
    }

:root {
            --primary-color: hsl(136, 52%, 46%);
            --secondary-color: hsl(136, 52%, 31%);
            --accent-color: hsl(136, 52%, 71%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(86deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
                background: rgba(136, 200, 146, 0.1);
                border-radius: 5px;
                padding-left: 10px;
            }
        }

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

.services-title {
    color: hsl(136, 52%, 31%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(136, 52%, 46%);
    border-radius: 2px;
}

.services-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(136, 52%, 46%), hsl(136, 52%, 71%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(136, 52%, 71%);
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.service-title {
    color: hsl(136, 52%, 31%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.service-price {
    color: hsl(136, 52%, 46%);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 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="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(-20px) rotate(360deg); }
}

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

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

.newsletter-title::after {
    content: '🎾';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.newsletter-subtitle {
    color: hsl(136, 52%, 31%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.benefits-list li {
    color: hsl(136, 52%, 31%);
    padding: 12px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(136, 52%, 46%);
    font-weight: bold;
    font-size: 1.3rem;
}

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

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid hsl(136, 52%, 71%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    border-color: hsl(136, 52%, 46%);
    box-shadow: 0 0 0 4px rgba(136, 184, 146, 0.2);
    transform: translateY(-2px);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(136, 184, 146, 0.4);
    background: linear-gradient(135deg, hsl(136, 52%, 51%) 0%, hsl(136, 52%, 36%) 100%);
}

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

.privacy-note {
    text-align: center;
    color: hsl(136, 52%, 31%);
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

.privacy-note a {
    color: hsl(136, 52%, 46%);
    text-decoration: none;
    font-weight: 500;
}

.privacy-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-title::after {
        right: -30px;
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        padding: 18px 25px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.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"><defs><pattern id="tennis-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23tennis-pattern)"/></svg>');
    opacity: 0.3;
}

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

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

.testimonial-carousel {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 0 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 3px solid hsl(136, 52%, 71%);
    transition: all 0.3s ease;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(136, 52%, 46%);
    line-height: 1;
    margin-right: 10px;
    font-family: serif;
}

.testimonial-author {
    border-top: 2px solid hsl(136, 52%, 71%);
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: hsl(136, 52%, 31%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: hsl(136, 52%, 46%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: hsl(136, 52%, 31%);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: hsl(136, 52%, 71%);
    border: 2px solid white;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        margin: 0 5px;
        padding: 30px 20px;
        height: auto;
        min-height: 280px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

:root {
        --primary-color: hsl(136, 52%, 46%);
        --secondary-color: hsl(136, 52%, 31%);
        --accent-color: hsl(136, 52%, 71%);
    }

    footer {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }

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

    footer p, footer li {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.8rem;
    }

    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: var(--accent-color);
        transform: translateX(5px);
    }

    footer .list-unstyled li {
        padding: 0.3rem 0;
    }

    footer .border-top {
        border-color: rgba(255, 255, 255, 0.2) !important;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1050;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }

    .cookie-notice.show {
        transform: translateY(0);
    }

    .cookie-notice .btn {
        margin: 0.3rem;
        border-radius: 25px;
        padding: 0.6rem 1.5rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-notice .btn-accept {
        background-color: var(--accent-color);
        border: none;
        color: var(--secondary-color);
    }

    .cookie-notice .btn-accept:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice .btn-learn {
        background-color: transparent;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
    }

    .cookie-notice .btn-learn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        footer {
            text-align: center;
        }
        
        .cookie-notice .btn {
            display: block;
            width: 100%;
            margin: 0.5rem 0;
        }
    }

:root {
            --primary-color: hsl(136, 52%, 46%);
            --secondary-color: hsl(136, 52%, 31%);
            --accent-color: hsl(136, 52%, 71%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(86deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
                background: rgba(136, 200, 146, 0.1);
                border-radius: 5px;
                padding-left: 10px;
            }
        }

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

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

.terms-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.terms-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 300;
}

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

.terms-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.terms-content {
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 15px;
}

.terms-list {
    list-style: none;
    padding-left: 0;
}

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

.terms-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.effective-date {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #34495e;
    color: white;
    border-radius: 8px;
    font-weight: 500;
}

:root {
        --primary-color: hsl(136, 52%, 46%);
        --secondary-color: hsl(136, 52%, 31%);
        --accent-color: hsl(136, 52%, 71%);
    }

    footer {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }

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

    footer p, footer li {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.8rem;
    }

    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: var(--accent-color);
        transform: translateX(5px);
    }

    footer .list-unstyled li {
        padding: 0.3rem 0;
    }

    footer .border-top {
        border-color: rgba(255, 255, 255, 0.2) !important;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1050;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }

    .cookie-notice.show {
        transform: translateY(0);
    }

    .cookie-notice .btn {
        margin: 0.3rem;
        border-radius: 25px;
        padding: 0.6rem 1.5rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-notice .btn-accept {
        background-color: var(--accent-color);
        border: none;
        color: var(--secondary-color);
    }

    .cookie-notice .btn-accept:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice .btn-learn {
        background-color: transparent;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
    }

    .cookie-notice .btn-learn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        footer {
            text-align: center;
        }
        
        .cookie-notice .btn {
            display: block;
            width: 100%;
            margin: 0.5rem 0;
        }
    }

:root {
            --primary-color: hsl(136, 52%, 46%);
            --secondary-color: hsl(136, 52%, 31%);
            --accent-color: hsl(136, 52%, 71%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(86deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
                background: rgba(136, 200, 146, 0.1);
                border-radius: 5px;
                padding-left: 10px;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(136, 52%, 96%) 0%, hsl(136, 52%, 92%) 100%);
    padding: 80px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 71%) 50%, hsl(136, 52%, 46%) 100%);
}

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

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(136, 52%, 31%);
    margin-bottom: 20px;
    position: relative;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: hsl(136, 52%, 46%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: hsl(136, 52%, 71%);
}

.faq-question {
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 100%);
    color: white;
    padding: 24px 30px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-card:hover .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 30px;
    color: hsl(136, 52%, 25%);
    line-height: 1.7;
    font-size: 1rem;
    border-top: 1px solid hsl(136, 52%, 90%);
}

.faq-answer strong {
    color: hsl(136, 52%, 31%);
}

.faq-highlight {
    background: linear-gradient(120deg, hsl(136, 52%, 71%) 0%, transparent 100%);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 24px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
}

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

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 15px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.content-block {
    margin-bottom: 50px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid hsl(136, 52%, 46%);
}

.content-block h2 {
    color: hsl(136, 52%, 31%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(136, 52%, 46%);
    border-radius: 2px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

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

.highlight-text {
    background: linear-gradient(120deg, hsl(136, 52%, 71%) 0%, hsl(136, 52%, 71%) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    padding: 2px 0;
    font-weight: 600;
}

.stats-row {
    background: hsl(136, 52%, 46%);
    color: white;
    padding: 40px 0;
    margin: 60px 0;
    border-radius: 15px;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.mission-values {
    background: linear-gradient(135deg, hsl(136, 52%, 31%) 0%, hsl(136, 52%, 46%) 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin: 40px 0;
}

.mission-values h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-values ul {
    list-style: none;
    padding: 0;
}

.mission-values li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-values li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(136, 52%, 71%);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .mission-values {
        padding: 30px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 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="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(-20px) rotate(360deg); }
}

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

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

.newsletter-title::after {
    content: '🎾';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.newsletter-subtitle {
    color: hsl(136, 52%, 31%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.benefits-list li {
    color: hsl(136, 52%, 31%);
    padding: 12px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(136, 52%, 46%);
    font-weight: bold;
    font-size: 1.3rem;
}

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

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid hsl(136, 52%, 71%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    border-color: hsl(136, 52%, 46%);
    box-shadow: 0 0 0 4px rgba(136, 184, 146, 0.2);
    transform: translateY(-2px);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(136, 184, 146, 0.4);
    background: linear-gradient(135deg, hsl(136, 52%, 51%) 0%, hsl(136, 52%, 36%) 100%);
}

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

.privacy-note {
    text-align: center;
    color: hsl(136, 52%, 31%);
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

.privacy-note a {
    color: hsl(136, 52%, 46%);
    text-decoration: none;
    font-weight: 500;
}

.privacy-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-title::after {
        right: -30px;
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        padding: 18px 25px;
    }
}

:root {
        --primary-color: hsl(136, 52%, 46%);
        --secondary-color: hsl(136, 52%, 31%);
        --accent-color: hsl(136, 52%, 71%);
    }

    footer {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }

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

    footer p, footer li {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.8rem;
    }

    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: var(--accent-color);
        transform: translateX(5px);
    }

    footer .list-unstyled li {
        padding: 0.3rem 0;
    }

    footer .border-top {
        border-color: rgba(255, 255, 255, 0.2) !important;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1050;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }

    .cookie-notice.show {
        transform: translateY(0);
    }

    .cookie-notice .btn {
        margin: 0.3rem;
        border-radius: 25px;
        padding: 0.6rem 1.5rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-notice .btn-accept {
        background-color: var(--accent-color);
        border: none;
        color: var(--secondary-color);
    }

    .cookie-notice .btn-accept:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice .btn-learn {
        background-color: transparent;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
    }

    .cookie-notice .btn-learn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        footer {
            text-align: center;
        }
        
        .cookie-notice .btn {
            display: block;
            width: 100%;
            margin: 0.5rem 0;
        }
    }

:root {
            --primary-color: hsl(136, 52%, 46%);
            --secondary-color: hsl(136, 52%, 31%);
            --accent-color: hsl(136, 52%, 71%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(86deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
                background: rgba(136, 200, 146, 0.1);
                border-radius: 5px;
                padding-left: 10px;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 100%);
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: 
        "title image"
        "subtitle image"
        "description cta";
    gap: 2rem;
    align-items: center;
    min-height: 80vh;
}

.hero-title {
    grid-area: title;
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    grid-area: subtitle;
    color: hsl(136, 52%, 71%);
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-image {
    grid-area: image;
    text-align: center;
    animation: slideInRight 1s ease-out 0.4s both;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.hero-description {
    grid-area: description;
    color: white;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: white;
}

.benefits-list i {
    color: hsl(136, 52%, 71%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.hero-cta {
    grid-area: cta;
    text-align: right;
    animation: slideInRight 1s ease-out 0.8s both;
}

.btn-primary-custom {
    background: hsl(136, 52%, 71%);
    border: none;
    color: hsl(136, 52%, 31%);
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
    background: white;
    color: hsl(136, 52%, 31%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(136, 52%, 71%);
    color: hsl(136, 52%, 71%);
    padding: 13px 33px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: hsl(136, 52%, 71%);
    color: hsl(136, 52%, 31%);
    transform: translateY(-3px);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "title"
            "subtitle"
            "image"
            "description"
            "cta";
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        text-align: center;
    }
    
    .benefits-list li {
        justify-content: center;
    }
}

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

.advantages-title {
    color: hsl(136, 52%, 31%);
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
}

.advantages-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(136, 52%, 46%);
    border-radius: 2px;
}

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

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 71%) 100%);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: hsl(136, 52%, 71%);
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(136, 169, 146, 0.4);
}

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

.advantage-title {
    color: hsl(136, 52%, 31%);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 15px;
    text-align: center;
}

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

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantage-card {
        margin-bottom: 30px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 100%);
    padding: 80px 0;
    color: white;
    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="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    opacity: 0.3;
}

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

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

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(136, 52%, 71%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: hsl(136, 52%, 71%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: hsl(136, 52%, 31%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(136, 52%, 71%);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.4;
}

.progress-bar-custom {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(136, 52%, 71%), white);
    border-radius: 10px;
    transition: width 2s ease;
}

.graph-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    height: 100%;
}

.mini-chart {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 15px;
    position: relative;
    margin-top: 20px;
    overflow: hidden;
}

.chart-bars {
    display: flex;
    align-items: end;
    height: 100%;
    padding: 15px;
    gap: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, hsl(136, 52%, 71%), hsl(136, 52%, 46%));
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

.achievement-badge {
    display: inline-block;
    background: hsl(136, 52%, 71%);
    color: hsl(136, 52%, 31%);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.faq-section {
    background: linear-gradient(135deg, hsl(136, 52%, 96%) 0%, hsl(136, 52%, 92%) 100%);
    padding: 80px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 71%) 50%, hsl(136, 52%, 46%) 100%);
}

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

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(136, 52%, 31%);
    margin-bottom: 20px;
    position: relative;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: hsl(136, 52%, 46%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: hsl(136, 52%, 71%);
}

.faq-question {
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 100%);
    color: white;
    padding: 24px 30px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-card:hover .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 30px;
    color: hsl(136, 52%, 25%);
    line-height: 1.7;
    font-size: 1rem;
    border-top: 1px solid hsl(136, 52%, 90%);
}

.faq-answer strong {
    color: hsl(136, 52%, 31%);
}

.faq-highlight {
    background: linear-gradient(120deg, hsl(136, 52%, 71%) 0%, transparent 100%);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 24px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 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="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(-20px) rotate(360deg); }
}

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

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

.newsletter-title::after {
    content: '🎾';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.newsletter-subtitle {
    color: hsl(136, 52%, 31%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.benefits-list li {
    color: hsl(136, 52%, 31%);
    padding: 12px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(136, 52%, 46%);
    font-weight: bold;
    font-size: 1.3rem;
}

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

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid hsl(136, 52%, 71%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    border-color: hsl(136, 52%, 46%);
    box-shadow: 0 0 0 4px rgba(136, 184, 146, 0.2);
    transform: translateY(-2px);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(136, 184, 146, 0.4);
    background: linear-gradient(135deg, hsl(136, 52%, 51%) 0%, hsl(136, 52%, 36%) 100%);
}

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

.privacy-note {
    text-align: center;
    color: hsl(136, 52%, 31%);
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

.privacy-note a {
    color: hsl(136, 52%, 46%);
    text-decoration: none;
    font-weight: 500;
}

.privacy-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-title::after {
        right: -30px;
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        padding: 18px 25px;
    }
}

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

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/about.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 15px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.content-block {
    margin-bottom: 50px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid hsl(136, 52%, 46%);
}

.content-block h2 {
    color: hsl(136, 52%, 31%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(136, 52%, 46%);
    border-radius: 2px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

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

.highlight-text {
    background: linear-gradient(120deg, hsl(136, 52%, 71%) 0%, hsl(136, 52%, 71%) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    padding: 2px 0;
    font-weight: 600;
}

.stats-row {
    background: hsl(136, 52%, 46%);
    color: white;
    padding: 40px 0;
    margin: 60px 0;
    border-radius: 15px;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.mission-values {
    background: linear-gradient(135deg, hsl(136, 52%, 31%) 0%, hsl(136, 52%, 46%) 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin: 40px 0;
}

.mission-values h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-values ul {
    list-style: none;
    padding: 0;
}

.mission-values li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-values li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(136, 52%, 71%);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .mission-values {
        padding: 30px;
    }
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 100%);
    color: white;
}

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

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: white;
    border-color: hsl(136, 52%, 71%);
    box-shadow: 0 0 0 0.2rem rgba(136, 204, 136, 0.25);
    outline: none;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    font-size: 16px;
}

.btn-submit {
    background: hsl(136, 52%, 71%);
    color: hsl(136, 52%, 31%);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
    background: white;
    color: hsl(136, 52%, 31%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.contact-info {
    padding-left: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid hsl(136, 52%, 71%);
    backdrop-filter: blur(5px);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(136, 52%, 71%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.6;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: hsl(136, 52%, 71%);
}

.info-text {
    line-height: 1.7;
    opacity: 0.9;
}

.working-hours {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .contact-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(136, 52%, 46%) 0%, hsl(136, 52%, 31%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.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"><defs><pattern id="tennis-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23tennis-pattern)"/></svg>');
    opacity: 0.3;
}

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

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

.testimonial-carousel {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 0 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 3px solid hsl(136, 52%, 71%);
    transition: all 0.3s ease;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(136, 52%, 46%);
    line-height: 1;
    margin-right: 10px;
    font-family: serif;
}

.testimonial-author {
    border-top: 2px solid hsl(136, 52%, 71%);
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: hsl(136, 52%, 31%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: hsl(136, 52%, 46%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: hsl(136, 52%, 31%);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: hsl(136, 52%, 71%);
    border: 2px solid white;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        margin: 0 5px;
        padding: 30px 20px;
        height: auto;
        min-height: 280px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

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

.services-title {
    color: hsl(136, 52%, 31%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(136, 52%, 46%);
    border-radius: 2px;
}

.services-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(136, 52%, 46%), hsl(136, 52%, 71%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(136, 52%, 71%);
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.service-title {
    color: hsl(136, 52%, 31%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.service-price {
    color: hsl(136, 52%, 46%);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

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

:root {
        --primary-color: hsl(136, 52%, 46%);
        --secondary-color: hsl(136, 52%, 31%);
        --accent-color: hsl(136, 52%, 71%);
    }

    footer {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }

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

    footer p, footer li {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.8rem;
    }

    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: var(--accent-color);
        transform: translateX(5px);
    }

    footer .list-unstyled li {
        padding: 0.3rem 0;
    }

    footer .border-top {
        border-color: rgba(255, 255, 255, 0.2) !important;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: white;
        padding: 1.5rem 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1050;
        transform: translateY(100%);
        transition: transform 0.4s ease-in-out;
    }

    .cookie-notice.show {
        transform: translateY(0);
    }

    .cookie-notice .btn {
        margin: 0.3rem;
        border-radius: 25px;
        padding: 0.6rem 1.5rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cookie-notice .btn-accept {
        background-color: var(--accent-color);
        border: none;
        color: var(--secondary-color);
    }

    .cookie-notice .btn-accept:hover {
        background-color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cookie-notice .btn-learn {
        background-color: transparent;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
    }

    .cookie-notice .btn-learn:hover {
        background-color: var(--accent-color);
        color: var(--secondary-color);
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        footer {
            text-align: center;
        }
        
        .cookie-notice .btn {
            display: block;
            width: 100%;
            margin: 0.5rem 0;
        }
    }