:root {
            --primary-color: hsl(123, 62%, 32%);
            --secondary-color: hsl(123, 62%, 17%);
            --accent-color: hsl(123, 62%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-image {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-image {
            filter: brightness(1.3) drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
                border: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.about-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,20 Q50,0 100,20 L100,80 Q50,100 0,80 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 200px 100px;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(-200px); }
    100% { transform: translateX(200px); }
}

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(123, 62%, 57%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-block {
    margin-bottom: 80px;
    position: relative;
}

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

.block-title {
    font-size: 2.2rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    text-align: center;
    margin-bottom: 20px;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.5s ease;
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(123, 62%, 32%) 0%, transparent 50%, hsl(123, 62%, 57%) 100%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 0.1;
}

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

.value-card {
    background: rgba(255,255,255,0.08);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 15px;
}

.value-title {
    font-size: 1.3rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 10px;
    font-weight: 600;
}

.value-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .text-content {
        padding: 25px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .image-wrapper {
        transform: none;
        margin: 30px 0;
    }
    
    .about-image {
        height: 250px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(123, 195, 87, 0.3);
    border-color: hsl(123, 62%, 57%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(123, 62%, 57%), hsl(123, 62%, 32%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.advantage-icon i {
    font-size: 2.2rem;
    color: white;
    transition: transform 0.3s ease;
}

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

.advantage-card:hover .advantage-icon i {
    transform: scale(1.2);
}

.advantage-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(123, 62%, 17%);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.zigzag-left {
    padding-right: 20px;
}

.zigzag-right {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .zigzag-left, .zigzag-right {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 C300,120 900,0 1200,60 L1200,120 L0,120 Z" fill="white"/></svg>') no-repeat;
    background-size: cover;
}

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    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="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.04)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

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

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

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

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

.stat-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, hsl(123, 62%, 57%), transparent, hsl(123, 62%, 57%));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer .footer-section h5 {
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer .footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(123, 62%, 57%);
}

footer .footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

footer .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer .footer-section a:hover {
    color: hsl(123, 62%, 57%);
    padding-left: 10px;
}

footer .contact-info i {
    color: hsl(123, 62%, 57%);
    margin-right: 10px;
    width: 20px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid hsl(123, 62%, 57%);
}

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

.cookie-notice .btn-accept {
    background: hsl(123, 62%, 57%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(123, 62%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(123, 62%, 57%);
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(123, 62%, 57%);
    color: white;
    transform: translateY(-2px);
}

.cookie-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

:root {
            --primary-color: hsl(123, 62%, 32%);
            --secondary-color: hsl(123, 62%, 17%);
            --accent-color: hsl(123, 62%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-image {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-image {
            filter: brightness(1.3) drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
                border: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.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, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.privacy-policy h2 {
    color: #34495e;
    font-size: 1.6em;
    margin: 35px 0 20px 0;
    padding: 15px 20px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.privacy-policy h3 {
    color: #2980b9;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #3498db;
}

.privacy-policy p {
    margin-bottom: 18px;
    text-align: justify;
    padding: 0 10px;
}

.privacy-policy ul, .privacy-policy ol {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-policy li {
    margin-bottom: 10px;
    position: relative;
}

.privacy-policy ul li::before {
    content: "🚤";
    position: absolute;
    left: -25px;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f4fd 0%, #d6eaf8 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #3498db;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

footer {
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer .footer-section h5 {
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer .footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(123, 62%, 57%);
}

footer .footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

footer .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer .footer-section a:hover {
    color: hsl(123, 62%, 57%);
    padding-left: 10px;
}

footer .contact-info i {
    color: hsl(123, 62%, 57%);
    margin-right: 10px;
    width: 20px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid hsl(123, 62%, 57%);
}

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

.cookie-notice .btn-accept {
    background: hsl(123, 62%, 57%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(123, 62%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(123, 62%, 57%);
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(123, 62%, 57%);
    color: white;
    transform: translateY(-2px);
}

.cookie-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

:root {
            --primary-color: hsl(123, 62%, 32%);
            --secondary-color: hsl(123, 62%, 17%);
            --accent-color: hsl(123, 62%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-image {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-image {
            filter: brightness(1.3) drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
                border: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

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

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

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

.policy-subtitle {
    font-size: 1.2em;
    color: #64748b;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.95em;
    color: #94a3b8;
    font-style: italic;
}

.policy-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 1.8em;
    color: #1e40af;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #3b82f6;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #60a5fa;
}

.cookie-type {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    padding: 25px;
    margin: 20px 0;
    border-radius: 12px;
    border-left: 5px solid #0ea5e9;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
}

.cookie-type h4 {
    color: #0369a1;
    font-size: 1.3em;
    margin-bottom: 12px;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
}

.consent-info {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.gdpr-compliance {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.cookie-list {
    list-style: none;
    padding: 0;
}

.cookie-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 25px;
}

.cookie-list li::before {
    content: '🍪';
    position: absolute;
    left: 0;
    top: 12px;
}

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

p {
    margin-bottom: 18px;
    text-align: justify;
}

strong {
    color: #1e40af;
    font-weight: 600;
}

footer {
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer .footer-section h5 {
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer .footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(123, 62%, 57%);
}

footer .footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

footer .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer .footer-section a:hover {
    color: hsl(123, 62%, 57%);
    padding-left: 10px;
}

footer .contact-info i {
    color: hsl(123, 62%, 57%);
    margin-right: 10px;
    width: 20px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid hsl(123, 62%, 57%);
}

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

.cookie-notice .btn-accept {
    background: hsl(123, 62%, 57%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(123, 62%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(123, 62%, 57%);
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(123, 62%, 57%);
    color: white;
    transform: translateY(-2px);
}

.cookie-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

:root {
            --primary-color: hsl(123, 62%, 32%);
            --secondary-color: hsl(123, 62%, 17%);
            --accent-color: hsl(123, 62%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-image {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-image {
            filter: brightness(1.3) drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
                border: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,30 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat-x;
    background-size: 200px 100px;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200px); }
}

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

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

.contact-subtitle {
    color: hsl(123, 62%, 57%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

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

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

.form-control {
    border: 2px solid hsl(123, 62%, 80%);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(123, 62%, 17%);
}

.form-control:focus {
    border-color: hsl(123, 62%, 32%);
    box-shadow: 0 0 0 0.2rem rgba(123, 162, 32, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(123, 20%, 60%);
}

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(123, 162, 32, 0.4);
    background: linear-gradient(45deg, hsl(123, 62%, 37%), hsl(123, 62%, 62%));
}

.contact-info {
    color: white;
    padding: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-title {
    color: hsl(123, 62%, 57%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-text {
    color: white;
    line-height: 1.6;
    font-size: 1rem;
}

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

.hours-title {
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hours-text {
    color: white;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,20 Q50,0 100,20 L100,80 Q50,100 0,80 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 200px 100px;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(-200px); }
    100% { transform: translateX(200px); }
}

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(123, 62%, 57%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-block {
    margin-bottom: 80px;
    position: relative;
}

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

.block-title {
    font-size: 2.2rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    text-align: center;
    margin-bottom: 20px;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.5s ease;
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(123, 62%, 32%) 0%, transparent 50%, hsl(123, 62%, 57%) 100%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 0.1;
}

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

.value-card {
    background: rgba(255,255,255,0.08);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 15px;
}

.value-title {
    font-size: 1.3rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 10px;
    font-weight: 600;
}

.value-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .text-content {
        padding: 25px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .image-wrapper {
        transform: none;
        margin: 30px 0;
    }
    
    .about-image {
        height: 250px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer .footer-section h5 {
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer .footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(123, 62%, 57%);
}

footer .footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

footer .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer .footer-section a:hover {
    color: hsl(123, 62%, 57%);
    padding-left: 10px;
}

footer .contact-info i {
    color: hsl(123, 62%, 57%);
    margin-right: 10px;
    width: 20px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid hsl(123, 62%, 57%);
}

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

.cookie-notice .btn-accept {
    background: hsl(123, 62%, 57%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(123, 62%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(123, 62%, 57%);
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(123, 62%, 57%);
    color: white;
    transform: translateY(-2px);
}

.cookie-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

:root {
            --primary-color: hsl(123, 62%, 32%);
            --secondary-color: hsl(123, 62%, 17%);
            --accent-color: hsl(123, 62%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-image {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-image {
            filter: brightness(1.3) drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
                border: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-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 20"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat-x;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

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

.section-subtitle {
    color: hsl(123, 62%, 57%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 200, 100, 0.2), transparent);
    transition: left 0.6s;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: hsl(123, 62%, 57%);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(123, 62%, 32%);
    margin-bottom: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(123, 62%, 57%);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    color: hsl(123, 62%, 17%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-price {
    background: linear-gradient(135deg, hsl(123, 62%, 32%), hsl(123, 62%, 57%));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-conditions {
    background: rgba(123, 200, 100, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid hsl(123, 62%, 57%);
    font-size: 0.9rem;
    color: #555;
}

.conditions-title {
    font-weight: 600;
    color: hsl(123, 62%, 17%);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 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="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.newsletter-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto 3rem;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: hsl(123, 62%, 57%);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

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

.subscribe-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, hsl(123, 62%, 57%), hsl(123, 62%, 47%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(123, 62%, 47%), hsl(123, 62%, 37%));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
}

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-form {
        margin: 0 1rem 2rem;
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        margin: 0 1rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 100px 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="waves" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0 50 Q25 30 50 50 T100 50 V100 H0 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>') repeat;
    opacity: 0.3;
}

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

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

.section-subtitle {
    color: hsl(123, 62%, 57%);
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(123, 62%, 32%), hsl(123, 62%, 57%));
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(123, 62%, 57%);
}

.testimonial-card:nth-child(odd) {
    margin-top: 20px;
}

.testimonial-card:nth-child(3n) {
    margin-top: -20px;
}

.quote-icon {
    font-size: 3rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 20px;
    opacity: 0.7;
}

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

.client-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.client-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: hsl(123, 62%, 32%);
    margin-bottom: 5px;
}

.client-location {
    color: #666;
    font-size: 0.95rem;
}

.rating {
    margin-bottom: 15px;
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card:nth-child(odd),
    .testimonial-card:nth-child(3n) {
        margin-top: 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer .footer-section h5 {
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer .footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(123, 62%, 57%);
}

footer .footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

footer .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer .footer-section a:hover {
    color: hsl(123, 62%, 57%);
    padding-left: 10px;
}

footer .contact-info i {
    color: hsl(123, 62%, 57%);
    margin-right: 10px;
    width: 20px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid hsl(123, 62%, 57%);
}

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

.cookie-notice .btn-accept {
    background: hsl(123, 62%, 57%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(123, 62%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(123, 62%, 57%);
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(123, 62%, 57%);
    color: white;
    transform: translateY(-2px);
}

.cookie-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

:root {
            --primary-color: hsl(123, 62%, 32%);
            --secondary-color: hsl(123, 62%, 17%);
            --accent-color: hsl(123, 62%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-image {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-image {
            filter: brightness(1.3) drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
                border: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

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

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

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

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

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

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

.important-notice {
    background: #fef3cd;
    border: 2px solid #f59e0b;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    font-weight: 500;
}

.list-item {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.list-item:before {
    content: "▶";
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

footer {
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer .footer-section h5 {
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer .footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(123, 62%, 57%);
}

footer .footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

footer .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer .footer-section a:hover {
    color: hsl(123, 62%, 57%);
    padding-left: 10px;
}

footer .contact-info i {
    color: hsl(123, 62%, 57%);
    margin-right: 10px;
    width: 20px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid hsl(123, 62%, 57%);
}

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

.cookie-notice .btn-accept {
    background: hsl(123, 62%, 57%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(123, 62%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(123, 62%, 57%);
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(123, 62%, 57%);
    color: white;
    transform: translateY(-2px);
}

.cookie-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

:root {
            --primary-color: hsl(123, 62%, 32%);
            --secondary-color: hsl(123, 62%, 17%);
            --accent-color: hsl(123, 62%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-image {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-image {
            filter: brightness(1.3) drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
                border: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

.faq-tabs {
    margin-bottom: 40px;
}

.nav-tabs {
    border: none;
    justify-content: center;
}

.nav-tabs .nav-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: hsl(123, 62%, 57%);
    border-color: hsl(123, 62%, 57%);
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255,255,255,0.1);
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.accordion-button {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: hsl(123, 62%, 57%);
    color: white;
    box-shadow: none;
}

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

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
    padding: 25px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .nav-tabs .nav-link {
        padding: 12px 20px;
        margin: 5px;
        font-size: 0.9rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 18px 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,20 Q50,0 100,20 L100,80 Q50,100 0,80 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 200px 100px;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(-200px); }
    100% { transform: translateX(200px); }
}

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(123, 62%, 57%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-block {
    margin-bottom: 80px;
    position: relative;
}

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

.block-title {
    font-size: 2.2rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    text-align: center;
    margin-bottom: 20px;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.5s ease;
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(123, 62%, 32%) 0%, transparent 50%, hsl(123, 62%, 57%) 100%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 0.1;
}

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

.value-card {
    background: rgba(255,255,255,0.08);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 15px;
}

.value-title {
    font-size: 1.3rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 10px;
    font-weight: 600;
}

.value-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .text-content {
        padding: 25px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .image-wrapper {
        transform: none;
        margin: 30px 0;
    }
    
    .about-image {
        height: 250px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 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="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.newsletter-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto 3rem;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: hsl(123, 62%, 57%);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

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

.subscribe-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, hsl(123, 62%, 57%), hsl(123, 62%, 47%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(123, 62%, 47%), hsl(123, 62%, 37%));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
}

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-form {
        margin: 0 1rem 2rem;
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        margin: 0 1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer .footer-section h5 {
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer .footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(123, 62%, 57%);
}

footer .footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

footer .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer .footer-section a:hover {
    color: hsl(123, 62%, 57%);
    padding-left: 10px;
}

footer .contact-info i {
    color: hsl(123, 62%, 57%);
    margin-right: 10px;
    width: 20px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid hsl(123, 62%, 57%);
}

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

.cookie-notice .btn-accept {
    background: hsl(123, 62%, 57%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(123, 62%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(123, 62%, 57%);
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(123, 62%, 57%);
    color: white;
    transform: translateY(-2px);
}

.cookie-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

:root {
            --primary-color: hsl(123, 62%, 32%);
            --secondary-color: hsl(123, 62%, 17%);
            --accent-color: hsl(123, 62%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-image {
            filter: brightness(1.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-image {
            filter: brightness(1.3) drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
                border: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: hsl(123, 62%, 57%);
    transform: rotate(15deg);
    opacity: 0.1;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: hsl(123, 62%, 57%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

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

.hero-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    position: relative;
    z-index: 4;
}

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

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    shape-outside: ellipse(60% 80% at 50% 50%);
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(123, 62%, 17%);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(123, 62%, 32%);
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    text-align: justify;
}

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

.benefits-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: hsl(123, 62%, 17%);
    position: relative;
    padding-left: 40px;
}

.benefits-list li::before {
    content: '\F284';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: hsl(123, 62%, 57%);
    font-size: 1.3rem;
    font-weight: bold;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, hsl(123, 62%, 57%) 0%, hsl(123, 62%, 32%) 100%);
    border: none;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(123, 62, 32, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(123, 62, 32, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(123, 62%, 57%);
    padding: 13px 33px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    color: hsl(123, 62%, 32%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: hsl(123, 62%, 57%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-text {
        margin-top: 20px;
        padding: 30px 20px;
    }
    
    .hero-image img {
        height: 300px;
        float: none;
        margin: 0 0 20px 0;
        shape-outside: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,20 Q50,0 100,20 L100,80 Q50,100 0,80 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 200px 100px;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(-200px); }
    100% { transform: translateX(200px); }
}

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(123, 62%, 57%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-block {
    margin-bottom: 80px;
    position: relative;
}

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

.block-title {
    font-size: 2.2rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    text-align: center;
    margin-bottom: 20px;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.5s ease;
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(123, 62%, 32%) 0%, transparent 50%, hsl(123, 62%, 57%) 100%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 0.1;
}

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

.value-card {
    background: rgba(255,255,255,0.08);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 15px;
}

.value-title {
    font-size: 1.3rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 10px;
    font-weight: 600;
}

.value-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .text-content {
        padding: 25px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .image-wrapper {
        transform: none;
        margin: 30px 0;
    }
    
    .about-image {
        height: 250px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(123, 195, 87, 0.3);
    border-color: hsl(123, 62%, 57%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(123, 62%, 57%), hsl(123, 62%, 32%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.advantage-icon i {
    font-size: 2.2rem;
    color: white;
    transition: transform 0.3s ease;
}

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

.advantage-card:hover .advantage-icon i {
    transform: scale(1.2);
}

.advantage-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(123, 62%, 17%);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.zigzag-left {
    padding-right: 20px;
}

.zigzag-right {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .zigzag-left, .zigzag-right {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 C300,120 900,0 1200,60 L1200,120 L0,120 Z" fill="white"/></svg>') no-repeat;
    background-size: cover;
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 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="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.newsletter-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto 3rem;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: hsl(123, 62%, 57%);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

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

.subscribe-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, hsl(123, 62%, 57%), hsl(123, 62%, 47%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(123, 62%, 47%), hsl(123, 62%, 37%));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
}

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-form {
        margin: 0 1rem 2rem;
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        margin: 0 1rem;
    }
}

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    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="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.04)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

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

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

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

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

.stat-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, hsl(123, 62%, 57%), transparent, hsl(123, 62%, 57%));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,30 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat-x;
    background-size: 200px 100px;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200px); }
}

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

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

.contact-subtitle {
    color: hsl(123, 62%, 57%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

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

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

.form-control {
    border: 2px solid hsl(123, 62%, 80%);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(123, 62%, 17%);
}

.form-control:focus {
    border-color: hsl(123, 62%, 32%);
    box-shadow: 0 0 0 0.2rem rgba(123, 162, 32, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(123, 20%, 60%);
}

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(123, 162, 32, 0.4);
    background: linear-gradient(45deg, hsl(123, 62%, 37%), hsl(123, 62%, 62%));
}

.contact-info {
    color: white;
    padding: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-title {
    color: hsl(123, 62%, 57%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-text {
    color: white;
    line-height: 1.6;
    font-size: 1rem;
}

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

.hours-title {
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hours-text {
    color: white;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

.faq-tabs {
    margin-bottom: 40px;
}

.nav-tabs {
    border: none;
    justify-content: center;
}

.nav-tabs .nav-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: hsl(123, 62%, 57%);
    border-color: hsl(123, 62%, 57%);
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255,255,255,0.1);
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.accordion-button {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: hsl(123, 62%, 57%);
    color: white;
    box-shadow: none;
}

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

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
    padding: 25px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .nav-tabs .nav-link {
        padding: 12px 20px;
        margin: 5px;
        font-size: 0.9rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 18px 20px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 100px 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="waves" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0 50 Q25 30 50 50 T100 50 V100 H0 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>') repeat;
    opacity: 0.3;
}

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

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

.section-subtitle {
    color: hsl(123, 62%, 57%);
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(123, 62%, 32%), hsl(123, 62%, 57%));
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(123, 62%, 57%);
}

.testimonial-card:nth-child(odd) {
    margin-top: 20px;
}

.testimonial-card:nth-child(3n) {
    margin-top: -20px;
}

.quote-icon {
    font-size: 3rem;
    color: hsl(123, 62%, 57%);
    margin-bottom: 20px;
    opacity: 0.7;
}

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

.client-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.client-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: hsl(123, 62%, 32%);
    margin-bottom: 5px;
}

.client-location {
    color: #666;
    font-size: 0.95rem;
}

.rating {
    margin-bottom: 15px;
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card:nth-child(odd),
    .testimonial-card:nth-child(3n) {
        margin-top: 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(123, 62%, 32%) 0%, hsl(123, 62%, 17%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-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 20"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat-x;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

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

.section-subtitle {
    color: hsl(123, 62%, 57%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 200, 100, 0.2), transparent);
    transition: left 0.6s;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: hsl(123, 62%, 57%);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(123, 62%, 32%);
    margin-bottom: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(123, 62%, 57%);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    color: hsl(123, 62%, 17%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-price {
    background: linear-gradient(135deg, hsl(123, 62%, 32%), hsl(123, 62%, 57%));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-conditions {
    background: rgba(123, 200, 100, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid hsl(123, 62%, 57%);
    font-size: 0.9rem;
    color: #555;
}

.conditions-title {
    font-weight: 600;
    color: hsl(123, 62%, 17%);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer .footer-section h5 {
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer .footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: hsl(123, 62%, 57%);
}

footer .footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

footer .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer .footer-section a:hover {
    color: hsl(123, 62%, 57%);
    padding-left: 10px;
}

footer .contact-info i {
    color: hsl(123, 62%, 57%);
    margin-right: 10px;
    width: 20px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 62%, 17%) 0%, hsl(123, 62%, 32%) 100%);
    color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid hsl(123, 62%, 57%);
}

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

.cookie-notice .btn-accept {
    background: hsl(123, 62%, 57%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(123, 62%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(123, 62%, 57%);
    color: hsl(123, 62%, 57%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(123, 62%, 57%);
    color: white;
    transform: translateY(-2px);
}

.cookie-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}