:root {
            --primary-color: hsl(132, 46%, 43%);
            --secondary-color: hsl(132, 46%, 28%);
            --accent-color: hsl(132, 46%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
                border-top: 1px solid rgba(255,255,255,0.2);
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                text-align: center;
            }
        }

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(132, 46%, 68%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    font-style: italic;
}

.content-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.content-block h3 {
    color: hsl(132, 46%, 68%);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(132, 146, 143, 0.2), rgba(132, 146, 128, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.highlight-text {
    color: hsl(132, 46%, 68%);
    font-weight: 600;
}

.quote-block {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid hsl(132, 46%, 68%);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .image-container img {
        height: 300px;
    }
}

#advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    color: white;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    height: 100%;
}

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

.advantage-icon {
    font-size: 3rem;
    color: hsl(132, 46%, 68%);
    margin-bottom: 20px;
    display: block;
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.advantage-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 50px;
    color: hsl(132, 46%, 68%);
    font-weight: 300;
}

.statistics-section {
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(132, 46%, 68%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(132, 46%, 68%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(132, 46%, 68%);
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

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

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(132, 46%, 68%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        margin-bottom: 2rem;
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

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

footer {
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(132, 46%, 68%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

footer a:hover {
    color: hsl(132, 46%, 68%);
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, hsl(132, 46%, 68%) 50%, transparent 100%);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-btn {
    background: hsl(132, 46%, 68%);
    border: none;
    color: hsl(132, 46%, 28%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: white;
    color: hsl(132, 46%, 28%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(132, 46%, 68%);
    color: hsl(132, 46%, 68%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-secondary:hover {
    background: hsl(132, 46%, 68%);
    color: hsl(132, 46%, 28%);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(132, 46%, 43%);
            --secondary-color: hsl(132, 46%, 28%);
            --accent-color: hsl(132, 46%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
                border-top: 1px solid rgba(255,255,255,0.2);
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                text-align: center;
            }
        }

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

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

.privacy-header h1 {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.privacy-header p {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #667eea;
}

.privacy-section h2 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.privacy-section h2::before {
    content: "🔐";
    margin-right: 10px;
    font-size: 1.5rem;
}

.privacy-section h3 {
    color: #4a5568;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 8px;
}

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

.privacy-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

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

.privacy-section li::marker {
    color: #667eea;
    font-weight: bold;
}

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

.highlight-box h3 {
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    margin-top: 0;
}

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

.data-type-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.data-type-card h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.right-item {
    background: #f0f4f8;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.effective-date {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #667eea;
    color: white;
    border-radius: 10px;
    font-weight: bold;
}

footer {
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(132, 46%, 68%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

footer a:hover {
    color: hsl(132, 46%, 68%);
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, hsl(132, 46%, 68%) 50%, transparent 100%);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-btn {
    background: hsl(132, 46%, 68%);
    border: none;
    color: hsl(132, 46%, 28%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: white;
    color: hsl(132, 46%, 28%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(132, 46%, 68%);
    color: hsl(132, 46%, 68%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-secondary:hover {
    background: hsl(132, 46%, 68%);
    color: hsl(132, 46%, 28%);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(132, 46%, 43%);
            --secondary-color: hsl(132, 46%, 28%);
            --accent-color: hsl(132, 46%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
                border-top: 1px solid rgba(255,255,255,0.2);
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                text-align: center;
            }
        }

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

.cookies-policy h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookies-policy h2 {
    color: #34495e;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.6em;
    font-weight: 600;
    border-left: 5px solid #667eea;
    padding-left: 15px;
    position: relative;
}

.cookies-policy h2::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

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

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

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

.cookies-policy li::before {
    content: '🍪';
    position: absolute;
    left: -15px;
    top: 0;
}

.cookie-type {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin: 5px 5px 5px 0;
    font-size: 0.9em;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.highlight-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border: 2px solid #f39c12;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.2);
}

.consent-notice {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border: 2px solid #16a085;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.2);
}

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

footer {
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(132, 46%, 68%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

footer a:hover {
    color: hsl(132, 46%, 68%);
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, hsl(132, 46%, 68%) 50%, transparent 100%);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-btn {
    background: hsl(132, 46%, 68%);
    border: none;
    color: hsl(132, 46%, 28%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: white;
    color: hsl(132, 46%, 28%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(132, 46%, 68%);
    color: hsl(132, 46%, 68%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-secondary:hover {
    background: hsl(132, 46%, 68%);
    color: hsl(132, 46%, 28%);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(132, 46%, 43%);
            --secondary-color: hsl(132, 46%, 28%);
            --accent-color: hsl(132, 46%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
                border-top: 1px solid rgba(255,255,255,0.2);
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                text-align: center;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

.form-label {
    color: hsl(132, 46%, 28%);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid hsl(132, 46%, 68%);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: hsl(132, 46%, 28%);
}

.form-control:focus {
    border-color: hsl(132, 46%, 43%);
    box-shadow: 0 0 0 0.2rem rgba(132, 184, 132, 0.25);
    background: white;
    outline: none;
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(132, 184, 132, 0.3);
    width: 100%;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(132, 184, 132, 0.4);
    background: linear-gradient(135deg, hsl(132, 46%, 48%) 0%, hsl(132, 46%, 33%) 100%);
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.hours-title {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.hours-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .info-card {
        margin: 0 15px 20px 15px;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(132, 46%, 68%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    font-style: italic;
}

.content-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.content-block h3 {
    color: hsl(132, 46%, 68%);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(132, 146, 143, 0.2), rgba(132, 146, 128, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.highlight-text {
    color: hsl(132, 46%, 68%);
    font-weight: 600;
}

.quote-block {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid hsl(132, 46%, 68%);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .image-container img {
        height: 300px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(132, 46%, 68%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

footer a:hover {
    color: hsl(132, 46%, 68%);
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, hsl(132, 46%, 68%) 50%, transparent 100%);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-btn {
    background: hsl(132, 46%, 68%);
    border: none;
    color: hsl(132, 46%, 28%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: white;
    color: hsl(132, 46%, 28%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(132, 46%, 68%);
    color: hsl(132, 46%, 68%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-secondary:hover {
    background: hsl(132, 46%, 68%);
    color: hsl(132, 46%, 28%);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(132, 46%, 43%);
            --secondary-color: hsl(132, 46%, 28%);
            --accent-color: hsl(132, 46%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
                border-top: 1px solid rgba(255,255,255,0.2);
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                text-align: center;
            }
        }

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

.services-title {
    color: hsl(132, 46%, 28%);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.services-subtitle {
    color: hsl(132, 46%, 43%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(132, 46%, 43%), hsl(132, 46%, 68%));
    transition: left 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(132, 46%, 68%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(132, 46%, 43%), hsl(132, 46%, 68%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(132, 46%, 28%), hsl(132, 46%, 43%));
}

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

.service-title {
    color: hsl(132, 46%, 28%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.service-price {
    color: hsl(132, 46%, 43%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(132, 46%, 43%);
    font-weight: bold;
}

.service-btn {
    background: linear-gradient(135deg, hsl(132, 46%, 43%), hsl(132, 46%, 68%));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.service-btn:hover {
    background: linear-gradient(135deg, hsl(132, 46%, 28%), hsl(132, 46%, 43%));
    transform: translateY(-2px);
    color: white;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: hsl(132, 46%, 43%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 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 infinite linear;
}

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

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

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

.benefit-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(132, 46%, 68%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: hsl(132, 46%, 28%);
}

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

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

.newsletter-form {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(132, 46, 43, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: hsl(132, 46%, 43%);
    box-shadow: 0 0 0 3px rgba(132, 46, 43, 0.1);
    transform: translateY(-2px);
}

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

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(132, 46, 43, 0.4);
    background: linear-gradient(135deg, hsl(132, 46%, 48%) 0%, hsl(132, 46%, 33%) 100%);
}

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

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

.privacy-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    line-height: 1.4;
}

.privacy-text a {
    color: hsl(132, 46%, 43%);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .subscribe-btn {
        width: 100%;
        min-width: auto;
    }
}

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

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.testimonials-scroll {
    display: flex;
    animation: scroll 60s linear infinite;
    gap: 30px;
}

.testimonials-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

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

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.client-info {
    border-top: 2px solid hsl(132, 46%, 68%);
    padding-top: 15px;
}

.client-name {
    font-weight: 700;
    color: hsl(132, 46%, 28%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-location {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.star-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
    justify-content: center;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        min-width: 280px;
        padding: 25px;
    }
    
    .testimonials-scroll {
        animation-duration: 40s;
    }
}

footer {
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(132, 46%, 68%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

footer a:hover {
    color: hsl(132, 46%, 68%);
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, hsl(132, 46%, 68%) 50%, transparent 100%);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-btn {
    background: hsl(132, 46%, 68%);
    border: none;
    color: hsl(132, 46%, 28%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: white;
    color: hsl(132, 46%, 28%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(132, 46%, 68%);
    color: hsl(132, 46%, 68%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-secondary:hover {
    background: hsl(132, 46%, 68%);
    color: hsl(132, 46%, 28%);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(132, 46%, 43%);
            --secondary-color: hsl(132, 46%, 28%);
            --accent-color: hsl(132, 46%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
                border-top: 1px solid rgba(255,255,255,0.2);
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                text-align: center;
            }
        }

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

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

.section-header {
    color: #34495e;
    font-size: 1.4em;
    margin-top: 35px;
    margin-bottom: 15px;
    padding: 10px 0;
    border-left: 5px solid #3498db;
    padding-left: 15px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 0 10px 10px 0;
}

.terms-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.terms-text {
    margin-bottom: 20px;
    text-align: justify;
    padding: 10px 0;
}

.highlight-box {
    background: linear-gradient(45deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 5px solid #f39c12;
}

.important-note {
    background: linear-gradient(45deg, #ffe6e6, #ffcccc);
    border: 1px solid #ff9999;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 5px solid #e74c3c;
    font-weight: 500;
}

ul {
    padding-left: 25px;
    margin: 15px 0;
}

li {
    margin-bottom: 8px;
    position: relative;
}

li::marker {
    color: #3498db;
    font-weight: bold;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #bdc3c7;
}

footer {
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(132, 46%, 68%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

footer a:hover {
    color: hsl(132, 46%, 68%);
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, hsl(132, 46%, 68%) 50%, transparent 100%);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-btn {
    background: hsl(132, 46%, 68%);
    border: none;
    color: hsl(132, 46%, 28%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: white;
    color: hsl(132, 46%, 28%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(132, 46%, 68%);
    color: hsl(132, 46%, 68%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-secondary:hover {
    background: hsl(132, 46%, 68%);
    color: hsl(132, 46%, 28%);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(132, 46%, 43%);
            --secondary-color: hsl(132, 46%, 28%);
            --accent-color: hsl(132, 46%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
                border-top: 1px solid rgba(255,255,255,0.2);
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                text-align: center;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.faq-title {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

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

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

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

.faq-item {
    border-bottom: 1px solid rgba(132, 46, 43, 0.1);
}

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

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

.faq-question:hover {
    background: hsl(132, 46%, 68%);
    color: white;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question.active {
    background: hsl(132, 46%, 43%);
    color: white;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(132, 46, 43, 0.02);
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-answer.show {
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-title h2 {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(132, 46%, 68%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    font-style: italic;
}

.content-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.content-block h3 {
    color: hsl(132, 46%, 68%);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(132, 146, 143, 0.2), rgba(132, 146, 128, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.highlight-text {
    color: hsl(132, 46%, 68%);
    font-weight: 600;
}

.quote-block {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid hsl(132, 46%, 68%);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .image-container img {
        height: 300px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 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 infinite linear;
}

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

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

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

.benefit-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(132, 46%, 68%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: hsl(132, 46%, 28%);
}

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

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

.newsletter-form {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(132, 46, 43, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: hsl(132, 46%, 43%);
    box-shadow: 0 0 0 3px rgba(132, 46, 43, 0.1);
    transform: translateY(-2px);
}

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

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(132, 46, 43, 0.4);
    background: linear-gradient(135deg, hsl(132, 46%, 48%) 0%, hsl(132, 46%, 33%) 100%);
}

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

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

.privacy-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    line-height: 1.4;
}

.privacy-text a {
    color: hsl(132, 46%, 43%);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .subscribe-btn {
        width: 100%;
        min-width: auto;
    }
}

footer {
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(132, 46%, 68%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

footer a:hover {
    color: hsl(132, 46%, 68%);
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, hsl(132, 46%, 68%) 50%, transparent 100%);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-btn {
    background: hsl(132, 46%, 68%);
    border: none;
    color: hsl(132, 46%, 28%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: white;
    color: hsl(132, 46%, 28%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(132, 46%, 68%);
    color: hsl(132, 46%, 68%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-secondary:hover {
    background: hsl(132, 46%, 68%);
    color: hsl(132, 46%, 28%);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(132, 46%, 43%);
            --secondary-color: hsl(132, 46%, 28%);
            --accent-color: hsl(132, 46%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
        }
        
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding-top: 1rem;
                border-top: 1px solid rgba(255,255,255,0.2);
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0;
                text-align: center;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(1px);
}

.hero-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid hsl(132, 46%, 68%);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(132, 46%, 68%);
    margin-bottom: 30px;
    font-weight: 300;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: left;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-benefits li {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-benefits li:last-child {
    border-bottom: none;
}

.hero-benefits i {
    color: hsl(132, 46%, 68%);
    margin-right: 15px;
    font-size: 1.3rem;
    min-width: 25px;
}

.hero-cta {
    margin-top: 50px;
    animation: slideInUp 1s ease-out 0.8s both;
}

.btn-primary-custom {
    background: hsl(132, 46%, 68%);
    border: none;
    color: hsl(132, 46%, 28%);
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    margin: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(132, 46%, 68%);
    color: hsl(132, 46%, 68%);
    font-weight: 600;
    padding: 13px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    margin: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-custom:hover {
    background: hsl(132, 46%, 68%);
    color: hsl(132, 46%, 28%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-benefits {
        text-align: center;
    }
    
    .hero-benefits li {
        justify-content: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(132, 46%, 68%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    font-style: italic;
}

.content-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.content-block h3 {
    color: hsl(132, 46%, 68%);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(132, 146, 143, 0.2), rgba(132, 146, 128, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.highlight-text {
    color: hsl(132, 46%, 68%);
    font-weight: 600;
}

.quote-block {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid hsl(132, 46%, 68%);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .image-container img {
        height: 300px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

.form-label {
    color: hsl(132, 46%, 28%);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid hsl(132, 46%, 68%);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: hsl(132, 46%, 28%);
}

.form-control:focus {
    border-color: hsl(132, 46%, 43%);
    box-shadow: 0 0 0 0.2rem rgba(132, 184, 132, 0.25);
    background: white;
    outline: none;
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(132, 184, 132, 0.3);
    width: 100%;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(132, 184, 132, 0.4);
    background: linear-gradient(135deg, hsl(132, 46%, 48%) 0%, hsl(132, 46%, 33%) 100%);
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.hours-title {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.hours-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .info-card {
        margin: 0 15px 20px 15px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.faq-title {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

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

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

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

.faq-item {
    border-bottom: 1px solid rgba(132, 46, 43, 0.1);
}

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

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

.faq-question:hover {
    background: hsl(132, 46%, 68%);
    color: white;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question.active {
    background: hsl(132, 46%, 43%);
    color: white;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(132, 46, 43, 0.02);
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-answer.show {
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-title h2 {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }
}

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

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.testimonials-scroll {
    display: flex;
    animation: scroll 60s linear infinite;
    gap: 30px;
}

.testimonials-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

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

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.client-info {
    border-top: 2px solid hsl(132, 46%, 68%);
    padding-top: 15px;
}

.client-name {
    font-weight: 700;
    color: hsl(132, 46%, 28%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-location {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.star-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
    justify-content: center;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        min-width: 280px;
        padding: 25px;
    }
    
    .testimonials-scroll {
        animation-duration: 40s;
    }
}

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

.services-title {
    color: hsl(132, 46%, 28%);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.services-subtitle {
    color: hsl(132, 46%, 43%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(132, 46%, 43%), hsl(132, 46%, 68%));
    transition: left 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(132, 46%, 68%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(132, 46%, 43%), hsl(132, 46%, 68%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(132, 46%, 28%), hsl(132, 46%, 43%));
}

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

.service-title {
    color: hsl(132, 46%, 28%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.service-price {
    color: hsl(132, 46%, 43%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(132, 46%, 43%);
    font-weight: bold;
}

.service-btn {
    background: linear-gradient(135deg, hsl(132, 46%, 43%), hsl(132, 46%, 68%));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.service-btn:hover {
    background: linear-gradient(135deg, hsl(132, 46%, 28%), hsl(132, 46%, 43%));
    transform: translateY(-2px);
    color: white;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: hsl(132, 46%, 43%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 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 infinite linear;
}

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

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

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

.benefit-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(132, 46%, 68%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: hsl(132, 46%, 28%);
}

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

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

.newsletter-form {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(132, 46, 43, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: hsl(132, 46%, 43%);
    box-shadow: 0 0 0 3px rgba(132, 46, 43, 0.1);
    transform: translateY(-2px);
}

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

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(132, 46, 43, 0.4);
    background: linear-gradient(135deg, hsl(132, 46%, 48%) 0%, hsl(132, 46%, 33%) 100%);
}

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

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

.privacy-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    line-height: 1.4;
}

.privacy-text a {
    color: hsl(132, 46%, 43%);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .subscribe-btn {
        width: 100%;
        min-width: auto;
    }
}

#advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    color: white;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    height: 100%;
}

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

.advantage-icon {
    font-size: 3rem;
    color: hsl(132, 46%, 68%);
    margin-bottom: 20px;
    display: block;
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.advantage-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 50px;
    color: hsl(132, 46%, 68%);
    font-weight: 300;
}

.statistics-section {
    background: linear-gradient(135deg, hsl(132, 46%, 43%) 0%, hsl(132, 46%, 28%) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(132, 46%, 68%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(132, 46%, 68%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(132, 46%, 68%);
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

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

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(132, 46%, 68%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        margin-bottom: 2rem;
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

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

footer {
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(132, 46%, 68%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

footer a:hover {
    color: hsl(132, 46%, 68%);
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, hsl(132, 46%, 68%) 50%, transparent 100%);
    margin: 40px 0 20px;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(132, 46%, 28%) 0%, hsl(132, 46%, 43%) 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-btn {
    background: hsl(132, 46%, 68%);
    border: none;
    color: hsl(132, 46%, 28%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: white;
    color: hsl(132, 46%, 28%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(132, 46%, 68%);
    color: hsl(132, 46%, 68%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn-secondary:hover {
    background: hsl(132, 46%, 68%);
    color: hsl(132, 46%, 28%);
    text-decoration: none;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}