:root {
            --primary-color: hsl(118, 30%, 36%);
            --secondary-color: hsl(118, 30%, 21%);
            --accent-color: hsl(118, 30%, 61%);
        }
        
        .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;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .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.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
            }
        }

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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="water-drops" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(118,130,161,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23water-drops)"/></svg>');
    opacity: 0.3;
}

.section-title {
    color: hsl(118, 30%, 21%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(118, 30%, 36%), hsl(118, 30%, 61%));
    border-radius: 2px;
}

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

.story-block {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    border-left: 5px solid hsl(118, 30%, 36%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.block-title {
    color: hsl(118, 30%, 21%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

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

.block-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.image-container {
    position: relative;
    margin-bottom: 30px;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid hsl(118, 30%, 61%);
    border-radius: 20px;
    z-index: -1;
}

.mission-highlight {
    background: linear-gradient(135deg, hsl(118, 30%, 36%), hsl(118, 30%, 61%));
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

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

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

.value-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 4px solid hsl(118, 30%, 36%);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: hsl(118, 30%, 36%);
}

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

.value-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 25px;
    }
    
    .about-image {
        height: 300px;
    }
    
    .image-container::after {
        display: none;
    }
}

#advantages {
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#advantages::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.advantages-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(118, 30%, 61%), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.advantage-item {
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}

.advantage-item:nth-child(odd) .advantage-card {
    margin-right: 60px;
    text-align: right;
}

.advantage-item:nth-child(even) .advantage-card {
    margin-left: 60px;
    text-align: left;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsl(118, 30%, 61%) 0%, hsl(118, 30%, 36%) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.advantage-card:hover::before {
    opacity: 0.05;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(118, 30%, 61%), hsl(118, 30%, 36%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(118, 30, 36, 0.3);
    transition: all 0.3s ease;
}

.advantage-item:nth-child(odd) .advantage-icon {
    margin-left: auto;
}

.advantage-item:nth-child(even) .advantage-icon {
    margin-right: auto;
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(118, 30, 36, 0.4);
}

.advantage-title {
    font-size: 24px;
    font-weight: 700;
    color: hsl(118, 30%, 21%);
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50px;
    width: 20px;
    height: 20px;
    background: hsl(118, 30%, 61%);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(118, 30, 36, 0.4);
    z-index: 3;
}

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

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

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .advantage-item:nth-child(odd) .advantage-card,
    .advantage-item:nth-child(even) .advantage-card {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }
    
    .advantage-item:nth-child(odd) .advantage-icon,
    .advantage-item:nth-child(even) .advantage-icon {
        margin-left: 0;
        margin-right: auto;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .advantage-card {
        padding: 30px 25px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(118, 30%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(118, 30%, 61%);
}

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

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

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(118, 30%, 85%);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: hsl(118, 30%, 75%);
    line-height: 1.5;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(118, 30%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(118, 30%, 61%);
    padding-left: 8px;
}

.footer-contact p {
    color: #d0d0d0;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(118, 30%, 61%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(118, 30%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    border-top: 3px solid hsl(118, 30%, 61%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    color: #e8e8e8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(118, 30%, 36%);
    border: 2px solid hsl(118, 30%, 36%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: hsl(118, 30%, 61%);
    border-color: hsl(118, 30%, 61%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(118, 30%, 61%);
    color: hsl(118, 30%, 61%);
}

.cookie-btn-outline:hover {
    background: hsl(118, 30%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 8px;
        display: block;
        text-align: center;
        margin-right: 0;
    }
}

:root {
            --primary-color: hsl(118, 30%, 36%);
            --secondary-color: hsl(118, 30%, 21%);
            --accent-color: hsl(118, 30%, 61%);
        }
        
        .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;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .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.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
            }
        }

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

.privacy-policy h1 {
    color: #2c3e50;
    text-align: center;
    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;
}

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

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

.privacy-policy p {
    margin-bottom: 15px;
    text-align: justify;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.privacy-policy li {
    margin-bottom: 8px;
    color: #555;
}

.privacy-policy strong {
    color: #2c3e50;
    font-weight: 600;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(118, 30%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(118, 30%, 61%);
    padding-left: 8px;
}

.footer-contact p {
    color: #d0d0d0;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(118, 30%, 61%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(118, 30%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    border-top: 3px solid hsl(118, 30%, 61%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    color: #e8e8e8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(118, 30%, 36%);
    border: 2px solid hsl(118, 30%, 36%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: hsl(118, 30%, 61%);
    border-color: hsl(118, 30%, 61%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(118, 30%, 61%);
    color: hsl(118, 30%, 61%);
}

.cookie-btn-outline:hover {
    background: hsl(118, 30%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 8px;
        display: block;
        text-align: center;
        margin-right: 0;
    }
}

:root {
            --primary-color: hsl(118, 30%, 36%);
            --secondary-color: hsl(118, 30%, 21%);
            --accent-color: hsl(118, 30%, 61%);
        }
        
        .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;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .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.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
            }
        }

.cookies-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #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;
    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;
}

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

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

.cookies-policy p {
    margin-bottom: 18px;
    text-align: justify;
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.cookies-policy li {
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 3px solid #3498db;
    background: rgba(52, 152, 219, 0.05);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

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

.consent-notice {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border: 2px solid #f39c12;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    color: #d35400;
    font-weight: 500;
}

.gdpr-section {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid #16a085;
}

footer {
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(118, 30%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(118, 30%, 61%);
    padding-left: 8px;
}

.footer-contact p {
    color: #d0d0d0;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(118, 30%, 61%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(118, 30%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    border-top: 3px solid hsl(118, 30%, 61%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    color: #e8e8e8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(118, 30%, 36%);
    border: 2px solid hsl(118, 30%, 36%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: hsl(118, 30%, 61%);
    border-color: hsl(118, 30%, 61%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(118, 30%, 61%);
    color: hsl(118, 30%, 61%);
}

.cookie-btn-outline:hover {
    background: hsl(118, 30%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 8px;
        display: block;
        text-align: center;
        margin-right: 0;
    }
}

:root {
            --primary-color: hsl(118, 30%, 36%);
            --secondary-color: hsl(118, 30%, 21%);
            --accent-color: hsl(118, 30%, 61%);
        }
        
        .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;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .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.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 100%);
    padding: 80px 0;
    color: white;
    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="70" 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); }
}

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

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

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

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: white;
    font-size: 1.1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: hsl(118, 30%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(118, 30%, 61%, 0.25);
    color: white;
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, hsl(118, 30%, 71%), hsl(118, 30%, 46%));
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.info-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border-left: 4px solid hsl(118, 30%, 61%);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: hsl(118, 30%, 61%);
}

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

.consultation-process {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.step-number {
    background: hsl(118, 30%, 61%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-text {
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form,
    .contact-info {
        margin-bottom: 30px;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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="water-drops" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(118,130,161,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23water-drops)"/></svg>');
    opacity: 0.3;
}

.section-title {
    color: hsl(118, 30%, 21%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(118, 30%, 36%), hsl(118, 30%, 61%));
    border-radius: 2px;
}

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

.story-block {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    border-left: 5px solid hsl(118, 30%, 36%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.block-title {
    color: hsl(118, 30%, 21%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

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

.block-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.image-container {
    position: relative;
    margin-bottom: 30px;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid hsl(118, 30%, 61%);
    border-radius: 20px;
    z-index: -1;
}

.mission-highlight {
    background: linear-gradient(135deg, hsl(118, 30%, 36%), hsl(118, 30%, 61%));
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

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

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

.value-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 4px solid hsl(118, 30%, 36%);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: hsl(118, 30%, 36%);
}

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

.value-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 25px;
    }
    
    .about-image {
        height: 300px;
    }
    
    .image-container::after {
        display: none;
    }
}

footer {
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(118, 30%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(118, 30%, 61%);
    padding-left: 8px;
}

.footer-contact p {
    color: #d0d0d0;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(118, 30%, 61%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(118, 30%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    border-top: 3px solid hsl(118, 30%, 61%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    color: #e8e8e8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(118, 30%, 36%);
    border: 2px solid hsl(118, 30%, 36%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: hsl(118, 30%, 61%);
    border-color: hsl(118, 30%, 61%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(118, 30%, 61%);
    color: hsl(118, 30%, 61%);
}

.cookie-btn-outline:hover {
    background: hsl(118, 30%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 8px;
        display: block;
        text-align: center;
        margin-right: 0;
    }
}

:root {
            --primary-color: hsl(118, 30%, 36%);
            --secondary-color: hsl(118, 30%, 21%);
            --accent-color: hsl(118, 30%, 61%);
        }
        
        .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;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .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.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
            }
        }

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

.services-title {
    color: hsl(118, 30%, 21%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.services-subtitle {
    color: hsl(118, 30%, 36%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(118, 30%, 61%);
}

.service-icon {
    font-size: 3rem;
    color: hsl(118, 30%, 36%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(118, 30%, 61%);
    transform: scale(1.1);
}

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

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

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

.service-conditions {
    background: hsl(118, 30%, 96%);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: hsl(118, 30%, 21%);
    border-left: 3px solid hsl(118, 30%, 61%);
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 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="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

.newsletter-title {
    color: hsl(118, 30%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(118, 30%, 36%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 500;
}

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

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

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

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

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(118, 30%, 61%);
    border-radius: 12px;
    font-size: 1.1rem;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-control::placeholder {
    color: hsl(118, 30%, 61%);
    font-weight: 400;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(118, 30%, 36%, 0.3);
}

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

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

.privacy-text {
    font-size: 0.9rem;
    color: hsl(118, 30%, 45%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.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(118, 30%, 61%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

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

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

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(118, 30%, 61%);
    font-family: serif;
    line-height: 1;
}

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

.testimonial-author {
    font-weight: 600;
    color: hsl(118, 30%, 21%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-location {
    color: hsl(118, 30%, 36%);
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(118, 30%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(118, 30%, 61%);
    padding-left: 8px;
}

.footer-contact p {
    color: #d0d0d0;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(118, 30%, 61%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(118, 30%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    border-top: 3px solid hsl(118, 30%, 61%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    color: #e8e8e8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(118, 30%, 36%);
    border: 2px solid hsl(118, 30%, 36%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: hsl(118, 30%, 61%);
    border-color: hsl(118, 30%, 61%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(118, 30%, 61%);
    color: hsl(118, 30%, 61%);
}

.cookie-btn-outline:hover {
    background: hsl(118, 30%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 8px;
        display: block;
        text-align: center;
        margin-right: 0;
    }
}

:root {
            --primary-color: hsl(118, 30%, 36%);
            --secondary-color: hsl(118, 30%, 21%);
            --accent-color: hsl(118, 30%, 61%);
        }
        
        .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;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .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.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
            }
        }

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

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

.terms-title {
    font-size: 2.5em;
    color: #2980b9;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.effective-date {
    font-size: 1.1em;
    color: #7f8c8d;
    font-style: italic;
}

.section-title {
    font-size: 1.5em;
    color: #2c3e50;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #e74c3c;
    background: rgba(255,255,255,0.3);
    padding: 10px 15px;
    border-radius: 5px;
}

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

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

.highlight-box {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 5px solid #c0392b;
    font-weight: bold;
}

.subsection {
    margin: 15px 0;
    padding-left: 20px;
    border-left: 2px solid #bdc3c7;
}

.list-item {
    margin: 8px 0;
    padding-left: 25px;
    position: relative;
}

.list-item:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

footer {
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(118, 30%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(118, 30%, 61%);
    padding-left: 8px;
}

.footer-contact p {
    color: #d0d0d0;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(118, 30%, 61%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(118, 30%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    border-top: 3px solid hsl(118, 30%, 61%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    color: #e8e8e8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(118, 30%, 36%);
    border: 2px solid hsl(118, 30%, 36%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: hsl(118, 30%, 61%);
    border-color: hsl(118, 30%, 61%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(118, 30%, 61%);
    color: hsl(118, 30%, 61%);
}

.cookie-btn-outline:hover {
    background: hsl(118, 30%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 8px;
        display: block;
        text-align: center;
        margin-right: 0;
    }
}

:root {
            --primary-color: hsl(118, 30%, 36%);
            --secondary-color: hsl(118, 30%, 21%);
            --accent-color: hsl(118, 30%, 61%);
        }
        
        .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;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .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.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
            }
        }

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

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

.faq-title {
  color: hsl(118, 30%, 21%);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.faq-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, hsl(118, 30%, 36%), hsl(118, 30%, 61%));
  border-radius: 2px;
}

.faq-subtitle {
  color: hsl(118, 30%, 36%);
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.faq-question {
  background: hsl(118, 30%, 36%);
  color: white;
  padding: 25px 30px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  position: relative;
}

.faq-question::after {
  content: '💧';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
}

.faq-answer {
  padding: 30px;
  color: hsl(118, 30%, 21%);
  font-size: 1rem;
  line-height: 1.7;
  background: white;
}

.faq-highlight {
  color: hsl(118, 30%, 36%);
  font-weight: 600;
}

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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="water-drops" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(118,130,161,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23water-drops)"/></svg>');
    opacity: 0.3;
}

.section-title {
    color: hsl(118, 30%, 21%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(118, 30%, 36%), hsl(118, 30%, 61%));
    border-radius: 2px;
}

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

.story-block {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    border-left: 5px solid hsl(118, 30%, 36%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.block-title {
    color: hsl(118, 30%, 21%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

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

.block-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.image-container {
    position: relative;
    margin-bottom: 30px;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid hsl(118, 30%, 61%);
    border-radius: 20px;
    z-index: -1;
}

.mission-highlight {
    background: linear-gradient(135deg, hsl(118, 30%, 36%), hsl(118, 30%, 61%));
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

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

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

.value-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 4px solid hsl(118, 30%, 36%);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: hsl(118, 30%, 36%);
}

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

.value-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 25px;
    }
    
    .about-image {
        height: 300px;
    }
    
    .image-container::after {
        display: none;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 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="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

.newsletter-title {
    color: hsl(118, 30%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(118, 30%, 36%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 500;
}

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

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

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

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

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(118, 30%, 61%);
    border-radius: 12px;
    font-size: 1.1rem;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-control::placeholder {
    color: hsl(118, 30%, 61%);
    font-weight: 400;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(118, 30%, 36%, 0.3);
}

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

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

.privacy-text {
    font-size: 0.9rem;
    color: hsl(118, 30%, 45%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(118, 30%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(118, 30%, 61%);
    padding-left: 8px;
}

.footer-contact p {
    color: #d0d0d0;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(118, 30%, 61%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(118, 30%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    border-top: 3px solid hsl(118, 30%, 61%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    color: #e8e8e8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(118, 30%, 36%);
    border: 2px solid hsl(118, 30%, 36%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: hsl(118, 30%, 61%);
    border-color: hsl(118, 30%, 61%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(118, 30%, 61%);
    color: hsl(118, 30%, 61%);
}

.cookie-btn-outline:hover {
    background: hsl(118, 30%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 8px;
        display: block;
        text-align: center;
        margin-right: 0;
    }
}

:root {
            --primary-color: hsl(118, 30%, 36%);
            --secondary-color: hsl(118, 30%, 21%);
            --accent-color: hsl(118, 30%, 61%);
        }
        
        .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;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .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.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(118, 30%, 96%) 0%, hsl(118, 30%, 92%) 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    color: hsl(118, 30%, 21%);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content h2 {
    color: hsl(118, 30%, 36%);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-description {
    color: hsl(118, 30%, 25%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

.benefits-list li {
    color: hsl(118, 30%, 21%);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.benefits-list li i {
    color: hsl(118, 30%, 36%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.btn-primary-custom {
    background: hsl(118, 30%, 36%);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: hsl(118, 30%, 21%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(118, 30%, 36%);
    padding: 13px 33px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: hsl(118, 30%, 36%);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: hsl(118, 30%, 36%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        text-align: center;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 100%);
    padding: 80px 0;
    color: white;
    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="70" 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); }
}

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

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

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

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: white;
    font-size: 1.1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: hsl(118, 30%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(118, 30%, 61%, 0.25);
    color: white;
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, hsl(118, 30%, 71%), hsl(118, 30%, 46%));
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.info-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border-left: 4px solid hsl(118, 30%, 61%);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: hsl(118, 30%, 61%);
}

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

.consultation-process {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.step-number {
    background: hsl(118, 30%, 61%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-text {
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form,
    .contact-info {
        margin-bottom: 30px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 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="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

.newsletter-title {
    color: hsl(118, 30%, 21%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(118, 30%, 36%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 500;
}

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

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

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

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

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(118, 30%, 61%);
    border-radius: 12px;
    font-size: 1.1rem;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-control::placeholder {
    color: hsl(118, 30%, 61%);
    font-weight: 400;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(118, 30%, 36%, 0.3);
}

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

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

.privacy-text {
    font-size: 0.9rem;
    color: hsl(118, 30%, 45%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
}

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

.services-title {
    color: hsl(118, 30%, 21%);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.services-subtitle {
    color: hsl(118, 30%, 36%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(118, 30%, 61%);
}

.service-icon {
    font-size: 3rem;
    color: hsl(118, 30%, 36%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(118, 30%, 61%);
    transform: scale(1.1);
}

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

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

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

.service-conditions {
    background: hsl(118, 30%, 96%);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: hsl(118, 30%, 21%);
    border-left: 3px solid hsl(118, 30%, 61%);
}

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

#advantages {
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#advantages::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.advantages-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(118, 30%, 61%), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.advantage-item {
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}

.advantage-item:nth-child(odd) .advantage-card {
    margin-right: 60px;
    text-align: right;
}

.advantage-item:nth-child(even) .advantage-card {
    margin-left: 60px;
    text-align: left;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsl(118, 30%, 61%) 0%, hsl(118, 30%, 36%) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.advantage-card:hover::before {
    opacity: 0.05;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(118, 30%, 61%), hsl(118, 30%, 36%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(118, 30, 36, 0.3);
    transition: all 0.3s ease;
}

.advantage-item:nth-child(odd) .advantage-icon {
    margin-left: auto;
}

.advantage-item:nth-child(even) .advantage-icon {
    margin-right: auto;
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(118, 30, 36, 0.4);
}

.advantage-title {
    font-size: 24px;
    font-weight: 700;
    color: hsl(118, 30%, 21%);
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50px;
    width: 20px;
    height: 20px;
    background: hsl(118, 30%, 61%);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(118, 30, 36, 0.4);
    z-index: 3;
}

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

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

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .advantage-item:nth-child(odd) .advantage-card,
    .advantage-item:nth-child(even) .advantage-card {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }
    
    .advantage-item:nth-child(odd) .advantage-icon,
    .advantage-item:nth-child(even) .advantage-icon {
        margin-left: 0;
        margin-right: auto;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .advantage-card {
        padding: 30px 25px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(118, 30%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(118, 30%, 61%);
}

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

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

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(118, 30%, 85%);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: hsl(118, 30%, 75%);
    line-height: 1.5;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 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="water-drops" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(118,130,161,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23water-drops)"/></svg>');
    opacity: 0.3;
}

.section-title {
    color: hsl(118, 30%, 21%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(118, 30%, 36%), hsl(118, 30%, 61%));
    border-radius: 2px;
}

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

.story-block {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    border-left: 5px solid hsl(118, 30%, 36%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.block-title {
    color: hsl(118, 30%, 21%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

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

.block-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.image-container {
    position: relative;
    margin-bottom: 30px;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid hsl(118, 30%, 61%);
    border-radius: 20px;
    z-index: -1;
}

.mission-highlight {
    background: linear-gradient(135deg, hsl(118, 30%, 36%), hsl(118, 30%, 61%));
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

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

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

.value-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 4px solid hsl(118, 30%, 36%);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: hsl(118, 30%, 36%);
}

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

.value-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 25px;
    }
    
    .about-image {
        height: 300px;
    }
    
    .image-container::after {
        display: none;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(118, 30%, 36%) 0%, hsl(118, 30%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.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(118, 30%, 61%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

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

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

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(118, 30%, 61%);
    font-family: serif;
    line-height: 1;
}

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

.testimonial-author {
    font-weight: 600;
    color: hsl(118, 30%, 21%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-location {
    color: hsl(118, 30%, 36%);
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

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

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

.faq-title {
  color: hsl(118, 30%, 21%);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.faq-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, hsl(118, 30%, 36%), hsl(118, 30%, 61%));
  border-radius: 2px;
}

.faq-subtitle {
  color: hsl(118, 30%, 36%);
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.faq-question {
  background: hsl(118, 30%, 36%);
  color: white;
  padding: 25px 30px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  position: relative;
}

.faq-question::after {
  content: '💧';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
}

.faq-answer {
  padding: 30px;
  color: hsl(118, 30%, 21%);
  font-size: 1rem;
  line-height: 1.7;
  background: white;
}

.faq-highlight {
  color: hsl(118, 30%, 36%);
  font-weight: 600;
}

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

footer {
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(118, 30%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(118, 30%, 61%);
    padding-left: 8px;
}

.footer-contact p {
    color: #d0d0d0;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(118, 30%, 61%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid hsl(118, 30%, 30%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(118, 30%, 21%), hsl(118, 30%, 16%));
    color: #ffffff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    border-top: 3px solid hsl(118, 30%, 61%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    color: #e8e8e8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(118, 30%, 36%);
    border: 2px solid hsl(118, 30%, 36%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.cookie-btn:hover {
    background: hsl(118, 30%, 61%);
    border-color: hsl(118, 30%, 61%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(118, 30%, 61%);
    color: hsl(118, 30%, 61%);
}

.cookie-btn-outline:hover {
    background: hsl(118, 30%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .cookie-btn {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 8px;
        display: block;
        text-align: center;
        margin-right: 0;
    }
}