:root {
            --primary-color: hsl(162, 35%, 48%);
            --secondary-color: hsl(162, 35%, 33%);
            --accent-color: hsl(162, 35%, 73%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f7 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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="hsl(162, 35%, 48%)" opacity="0.05"/><circle cx="80" cy="40" r="1" fill="hsl(162, 35%, 33%)" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="hsl(162, 35%, 73%)" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(162, 35%, 33%);
    margin-bottom: 2rem;
    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(162, 35%, 48%), hsl(162, 35%, 73%));
    border-radius: 2px;
}

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

.content-block {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid hsl(162, 35%, 73%);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(162, 35%, 33%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: hsl(162, 35%, 48%);
    border-radius: 50%;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

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

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 70%, hsl(162, 35%, 48%) 100%);
    opacity: 0.1;
    pointer-events: none;
}

.highlight-text {
    color: hsl(162, 35%, 48%);
    font-weight: 600;
}

.mission-values {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    color: white;
    border: none;
}

.mission-values .block-title {
    color: white;
}

.mission-values .block-title::before {
    background: hsl(162, 35%, 73%);
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 2rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.advantages-subtitle {
    color: hsl(162, 35%, 73%);
    text-align: center;
    margin-bottom: 80px;
    font-size: 1.3rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: hsl(162, 35%, 48%);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(162, 35%, 33%), hsl(162, 35%, 48%));
}

.advantage-icon i {
    font-size: 2.2rem;
    color: white;
}

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

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

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.8rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

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

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

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

.decorative-line {
    height: 3px;
    width: 80px;
    background: hsl(162, 35%, 73%);
    margin: 20px auto;
    border-radius: 2px;
}

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

footer {
    background: linear-gradient(135deg, hsl(162, 35%, 33%) 0%, hsl(162, 35%, 28%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: #e8f4f1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(162, 35%, 73%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: #e8f4f1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: hsl(162, 35%, 73%);
    padding-left: 8px;
}

.footer-contact p {
    color: #e8f4f1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: hsl(162, 35%, 73%);
    margin-right: 10px;
    width: 20px;
}

.footer-phone {
    color: #e8f4f1 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: hsl(162, 35%, 73%) !important;
}

.footer-bottom {
    border-top: 1px solid hsl(162, 35%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8d4ce;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(162, 35%, 48%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(162, 35%, 73%);
    color: hsl(162, 35%, 33%);
    transform: translateY(-2px);
}

.cookie-text {
    color: #e8f4f1;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cookie-notice .row > div {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: auto;
    }
}

:root {
            --primary-color: hsl(162, 35%, 48%);
            --secondary-color: hsl(162, 35%, 33%);
            --accent-color: hsl(162, 35%, 73%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.privacy-policy {
    max-width: 1200px;
    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);
}

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

.privacy-policy h2 {
    color: #654321;
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 5px solid #deb887;
    background: rgba(222, 184, 135, 0.1);
    padding: 15px;
    border-radius: 8px;
}

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

.privacy-policy p {
    margin-bottom: 18px;
    text-align: justify;
    background: rgba(255,255,255,0.7);
    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.8);
    padding: 20px 40px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.privacy-policy li::before {
    content: "🌲";
    position: absolute;
    left: -20px;
    top: 0;
}

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

.highlight-box {
    background: linear-gradient(45deg, #f4a460, #deb887);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid #cd853f;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #696969;
    background: rgba(255,255,255,0.9);
    padding: 15px;
    border-radius: 25px;
    margin-bottom: 30px;
    border: 2px dashed #deb887;
}

footer {
    background: linear-gradient(135deg, hsl(162, 35%, 33%) 0%, hsl(162, 35%, 28%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: #e8f4f1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(162, 35%, 73%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: #e8f4f1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: hsl(162, 35%, 73%);
    padding-left: 8px;
}

.footer-contact p {
    color: #e8f4f1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: hsl(162, 35%, 73%);
    margin-right: 10px;
    width: 20px;
}

.footer-phone {
    color: #e8f4f1 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: hsl(162, 35%, 73%) !important;
}

.footer-bottom {
    border-top: 1px solid hsl(162, 35%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8d4ce;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(162, 35%, 48%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(162, 35%, 73%);
    color: hsl(162, 35%, 33%);
    transform: translateY(-2px);
}

.cookie-text {
    color: #e8f4f1;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cookie-notice .row > div {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: auto;
    }
}

:root {
            --primary-color: hsl(162, 35%, 48%);
            --secondary-color: hsl(162, 35%, 33%);
            --accent-color: hsl(162, 35%, 73%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

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

.policy-subtitle {
    font-size: 1.2rem;
    color: #5a6c57;
    font-weight: 300;
}

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

.section-title {
    font-size: 1.8rem;
    color: #2d5a3d;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #4a7c59;
    position: relative;
}

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

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

.cookie-description {
    background: #f8f9fa;
    padding: 20px;
    margin: 10px 0;
    border-left: 5px solid #4a7c59;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.highlight-box {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 25px;
    margin: 25px 0;
    border-radius: 15px;
    border: 1px solid #fdcb6e;
    box-shadow: 0 8px 25px rgba(253, 203, 110, 0.3);
}

.consent-notice {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 25px;
    margin: 30px 0;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(116, 185, 255, 0.4);
}

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

.policy-list li {
    background: white;
    margin: 10px 0;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #4a7c59;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.policy-list li:hover {
    transform: translateX(5px);
}

.policy-list li::before {
    content: '🍪';
    margin-right: 10px;
    font-size: 1.2rem;
}

.gdpr-compliance {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: white;
    padding: 30px;
    margin: 30px 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.3);
}

.effective-date {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(74, 124, 89, 0.1);
    border-radius: 10px;
    font-style: italic;
    color: #2d5a3d;
}

footer {
    background: linear-gradient(135deg, hsl(162, 35%, 33%) 0%, hsl(162, 35%, 28%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: #e8f4f1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(162, 35%, 73%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: #e8f4f1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: hsl(162, 35%, 73%);
    padding-left: 8px;
}

.footer-contact p {
    color: #e8f4f1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: hsl(162, 35%, 73%);
    margin-right: 10px;
    width: 20px;
}

.footer-phone {
    color: #e8f4f1 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: hsl(162, 35%, 73%) !important;
}

.footer-bottom {
    border-top: 1px solid hsl(162, 35%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8d4ce;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(162, 35%, 48%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(162, 35%, 73%);
    color: hsl(162, 35%, 33%);
    transform: translateY(-2px);
}

.cookie-text {
    color: #e8f4f1;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cookie-notice .row > div {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: auto;
    }
}

:root {
            --primary-color: hsl(162, 35%, 48%);
            --secondary-color: hsl(162, 35%, 33%);
            --accent-color: hsl(162, 35%, 73%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: hsl(162, 35%, 73%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid hsl(162, 35%, 73%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(162, 35%, 33%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(162, 35%, 48%);
    box-shadow: 0 0 0 3px rgba(104, 159, 136, 0.2);
    transform: translateY(-2px);
}

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

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

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(104, 159, 136, 0.4);
    background: linear-gradient(135deg, hsl(162, 35%, 53%) 0%, hsl(162, 35%, 38%) 100%);
}

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

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

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

.info-title {
    color: hsl(162, 35%, 73%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.hours-title {
    color: hsl(162, 35%, 73%);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f7 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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="hsl(162, 35%, 48%)" opacity="0.05"/><circle cx="80" cy="40" r="1" fill="hsl(162, 35%, 33%)" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="hsl(162, 35%, 73%)" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(162, 35%, 33%);
    margin-bottom: 2rem;
    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(162, 35%, 48%), hsl(162, 35%, 73%));
    border-radius: 2px;
}

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

.content-block {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid hsl(162, 35%, 73%);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(162, 35%, 33%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: hsl(162, 35%, 48%);
    border-radius: 50%;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

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

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 70%, hsl(162, 35%, 48%) 100%);
    opacity: 0.1;
    pointer-events: none;
}

.highlight-text {
    color: hsl(162, 35%, 48%);
    font-weight: 600;
}

.mission-values {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    color: white;
    border: none;
}

.mission-values .block-title {
    color: white;
}

.mission-values .block-title::before {
    background: hsl(162, 35%, 73%);
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 2rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
}

footer {
    background: linear-gradient(135deg, hsl(162, 35%, 33%) 0%, hsl(162, 35%, 28%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: #e8f4f1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(162, 35%, 73%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: #e8f4f1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: hsl(162, 35%, 73%);
    padding-left: 8px;
}

.footer-contact p {
    color: #e8f4f1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: hsl(162, 35%, 73%);
    margin-right: 10px;
    width: 20px;
}

.footer-phone {
    color: #e8f4f1 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: hsl(162, 35%, 73%) !important;
}

.footer-bottom {
    border-top: 1px solid hsl(162, 35%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8d4ce;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(162, 35%, 48%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(162, 35%, 73%);
    color: hsl(162, 35%, 33%);
    transform: translateY(-2px);
}

.cookie-text {
    color: #e8f4f1;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cookie-notice .row > div {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: auto;
    }
}

:root {
            --primary-color: hsl(162, 35%, 48%);
            --secondary-color: hsl(162, 35%, 33%);
            --accent-color: hsl(162, 35%, 73%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

.services-title {
    color: hsl(162, 35%, 33%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

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

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

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

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

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

.service-content h4 {
    color: hsl(162, 35%, 33%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.service-conditions {
    background: hsl(162, 35%, 73%, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(162, 35%, 48%);
}

.service-conditions h6 {
    color: hsl(162, 35%, 33%);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    font-size: 0.85rem;
    color: #555;
}

.service-conditions li {
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 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"><defs><pattern id="wood" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="rgba(255,255,255,0.03)"/><path d="M0 10h20M0 0v20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23wood)"/></svg>') repeat;
    opacity: 0.3;
}

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

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

.newsletter-subtitle {
    color: hsl(162, 35%, 73%);
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.5;
}

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

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

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

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(162, 35%, 73%);
    margin-bottom: 15px;
}

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

.benefit-text {
    color: hsl(162, 35%, 73%);
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.form-group {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 280px;
    padding: 18px 25px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    color: hsl(162, 35%, 33%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input::placeholder {
    color: hsl(162, 35%, 48%);
    opacity: 0.7;
}

.email-input:focus {
    border-color: white;
    background: white;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.subscribe-btn {
    padding: 18px 35px;
    background: linear-gradient(45deg, hsl(162, 35%, 73%), hsl(162, 35%, 63%));
    color: hsl(162, 35%, 33%);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    min-width: 160px;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, white, hsl(162, 35%, 73%));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

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

.form-note {
    color: hsl(162, 35%, 73%);
    font-size: 0.9rem;
    margin-top: 20px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-form {
        padding: 30px 20px;
    }
    
    .form-group {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.testimonial-card:nth-child(odd) {
    transform: translateY(-20px);
}

.testimonial-card:nth-child(even) {
    transform: translateY(20px);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(162, 35%, 48%), hsl(162, 35%, 73%));
}

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

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

.client-info {
    border-top: 1px solid hsl(162, 35%, 73%);
    padding-top: 20px;
}

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

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card:nth-child(odd),
    .testimonial-card:nth-child(even) {
        transform: translateY(0);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(162, 35%, 33%) 0%, hsl(162, 35%, 28%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: #e8f4f1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(162, 35%, 73%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: #e8f4f1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: hsl(162, 35%, 73%);
    padding-left: 8px;
}

.footer-contact p {
    color: #e8f4f1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: hsl(162, 35%, 73%);
    margin-right: 10px;
    width: 20px;
}

.footer-phone {
    color: #e8f4f1 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: hsl(162, 35%, 73%) !important;
}

.footer-bottom {
    border-top: 1px solid hsl(162, 35%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8d4ce;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(162, 35%, 48%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(162, 35%, 73%);
    color: hsl(162, 35%, 33%);
    transform: translateY(-2px);
}

.cookie-text {
    color: #e8f4f1;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cookie-notice .row > div {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: auto;
    }
}

:root {
            --primary-color: hsl(162, 35%, 48%);
            --secondary-color: hsl(162, 35%, 33%);
            --accent-color: hsl(162, 35%, 73%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.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, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.terms-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-style: italic;
}

.terms-section {
    margin-bottom: 35px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #8b4513;
}

.section-title {
    font-size: 1.6rem;
    color: #8b4513;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.terms-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.terms-list li:before {
    content: "🌲";
    position: absolute;
    left: 0;
    top: 0;
}

.highlight-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #dee2e6;
}

footer {
    background: linear-gradient(135deg, hsl(162, 35%, 33%) 0%, hsl(162, 35%, 28%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: #e8f4f1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(162, 35%, 73%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: #e8f4f1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: hsl(162, 35%, 73%);
    padding-left: 8px;
}

.footer-contact p {
    color: #e8f4f1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: hsl(162, 35%, 73%);
    margin-right: 10px;
    width: 20px;
}

.footer-phone {
    color: #e8f4f1 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: hsl(162, 35%, 73%) !important;
}

.footer-bottom {
    border-top: 1px solid hsl(162, 35%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8d4ce;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(162, 35%, 48%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(162, 35%, 73%);
    color: hsl(162, 35%, 33%);
    transform: translateY(-2px);
}

.cookie-text {
    color: #e8f4f1;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cookie-notice .row > div {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: auto;
    }
}

:root {
            --primary-color: hsl(162, 35%, 48%);
            --secondary-color: hsl(162, 35%, 33%);
            --accent-color: hsl(162, 35%, 73%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(162, 35%, 98%) 0%, hsl(162, 35%, 95%) 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 73%) 100%);
}

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

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(162, 35%, 33%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(162, 35%, 48%);
    border-radius: 2px;
}

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

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

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(162, 35%, 33%);
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: hsl(162, 35%, 48%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px hsla(162, 35%, 48%, 0.2);
    border: none;
}

.accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: hsl(162, 35%, 48%);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    color: white;
    transform: rotate(0deg);
}

.accordion-body {
    padding: 30px;
    background: white;
    border-top: 1px solid hsl(162, 35%, 90%);
}

.accordion-body p {
    margin: 0;
    line-height: 1.7;
    color: hsl(162, 35%, 25%);
    font-size: 1rem;
}

.accordion-body ul {
    margin: 15px 0 0 0;
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 8px;
    color: hsl(162, 35%, 30%);
    line-height: 1.6;
}

.highlight-box {
    background: hsl(162, 35%, 95%);
    border-left: 4px solid hsl(162, 35%, 48%);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
}

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f7 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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="hsl(162, 35%, 48%)" opacity="0.05"/><circle cx="80" cy="40" r="1" fill="hsl(162, 35%, 33%)" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="hsl(162, 35%, 73%)" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(162, 35%, 33%);
    margin-bottom: 2rem;
    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(162, 35%, 48%), hsl(162, 35%, 73%));
    border-radius: 2px;
}

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

.content-block {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid hsl(162, 35%, 73%);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(162, 35%, 33%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: hsl(162, 35%, 48%);
    border-radius: 50%;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

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

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 70%, hsl(162, 35%, 48%) 100%);
    opacity: 0.1;
    pointer-events: none;
}

.highlight-text {
    color: hsl(162, 35%, 48%);
    font-weight: 600;
}

.mission-values {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    color: white;
    border: none;
}

.mission-values .block-title {
    color: white;
}

.mission-values .block-title::before {
    background: hsl(162, 35%, 73%);
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 2rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 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"><defs><pattern id="wood" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="rgba(255,255,255,0.03)"/><path d="M0 10h20M0 0v20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23wood)"/></svg>') repeat;
    opacity: 0.3;
}

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

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

.newsletter-subtitle {
    color: hsl(162, 35%, 73%);
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.5;
}

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

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

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

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(162, 35%, 73%);
    margin-bottom: 15px;
}

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

.benefit-text {
    color: hsl(162, 35%, 73%);
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.form-group {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 280px;
    padding: 18px 25px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    color: hsl(162, 35%, 33%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input::placeholder {
    color: hsl(162, 35%, 48%);
    opacity: 0.7;
}

.email-input:focus {
    border-color: white;
    background: white;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.subscribe-btn {
    padding: 18px 35px;
    background: linear-gradient(45deg, hsl(162, 35%, 73%), hsl(162, 35%, 63%));
    color: hsl(162, 35%, 33%);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    min-width: 160px;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, white, hsl(162, 35%, 73%));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

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

.form-note {
    color: hsl(162, 35%, 73%);
    font-size: 0.9rem;
    margin-top: 20px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-form {
        padding: 30px 20px;
    }
    
    .form-group {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

footer {
    background: linear-gradient(135deg, hsl(162, 35%, 33%) 0%, hsl(162, 35%, 28%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: #e8f4f1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(162, 35%, 73%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: #e8f4f1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: hsl(162, 35%, 73%);
    padding-left: 8px;
}

.footer-contact p {
    color: #e8f4f1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: hsl(162, 35%, 73%);
    margin-right: 10px;
    width: 20px;
}

.footer-phone {
    color: #e8f4f1 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: hsl(162, 35%, 73%) !important;
}

.footer-bottom {
    border-top: 1px solid hsl(162, 35%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8d4ce;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(162, 35%, 48%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(162, 35%, 73%);
    color: hsl(162, 35%, 33%);
    transform: translateY(-2px);
}

.cookie-text {
    color: #e8f4f1;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cookie-notice .row > div {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: auto;
    }
}

:root {
            --primary-color: hsl(162, 35%, 48%);
            --secondary-color: hsl(162, 35%, 33%);
            --accent-color: hsl(162, 35%, 73%);
        }
        
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background-color: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: hsl(162, 35%, 73%);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: left;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

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

.feature-item i {
    font-size: 2rem;
    color: hsl(162, 35%, 73%);
    margin-bottom: 1rem;
    display: block;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-buttons {
    margin: 3rem 0 4rem 0;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

.btn-secondary-custom:hover {
    background: hsl(162, 35%, 73%);
    color: hsl(162, 35%, 33%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero-image-container {
    margin-top: 4rem;
    text-align: center;
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        text-align: center;
        padding: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

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

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

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

.decorative-line {
    height: 3px;
    width: 80px;
    background: hsl(162, 35%, 73%);
    margin: 20px auto;
    border-radius: 2px;
}

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

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

.services-title {
    color: hsl(162, 35%, 33%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

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

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

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

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

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

.service-content h4 {
    color: hsl(162, 35%, 33%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.service-conditions {
    background: hsl(162, 35%, 73%, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(162, 35%, 48%);
}

.service-conditions h6 {
    color: hsl(162, 35%, 33%);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    font-size: 0.85rem;
    color: #555;
}

.service-conditions li {
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.advantages-subtitle {
    color: hsl(162, 35%, 73%);
    text-align: center;
    margin-bottom: 80px;
    font-size: 1.3rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: hsl(162, 35%, 48%);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(162, 35%, 33%), hsl(162, 35%, 48%));
}

.advantage-icon i {
    font-size: 2.2rem;
    color: white;
}

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

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

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.8rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 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"><defs><pattern id="wood" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="rgba(255,255,255,0.03)"/><path d="M0 10h20M0 0v20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23wood)"/></svg>') repeat;
    opacity: 0.3;
}

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

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

.newsletter-subtitle {
    color: hsl(162, 35%, 73%);
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.5;
}

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

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

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

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(162, 35%, 73%);
    margin-bottom: 15px;
}

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

.benefit-text {
    color: hsl(162, 35%, 73%);
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.form-group {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 280px;
    padding: 18px 25px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    color: hsl(162, 35%, 33%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input::placeholder {
    color: hsl(162, 35%, 48%);
    opacity: 0.7;
}

.email-input:focus {
    border-color: white;
    background: white;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.subscribe-btn {
    padding: 18px 35px;
    background: linear-gradient(45deg, hsl(162, 35%, 73%), hsl(162, 35%, 63%));
    color: hsl(162, 35%, 33%);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    min-width: 160px;
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, white, hsl(162, 35%, 73%));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

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

.form-note {
    color: hsl(162, 35%, 73%);
    font-size: 0.9rem;
    margin-top: 20px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-form {
        padding: 30px 20px;
    }
    
    .form-group {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(162, 35%, 98%) 0%, hsl(162, 35%, 95%) 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 73%) 100%);
}

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

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(162, 35%, 33%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(162, 35%, 48%);
    border-radius: 2px;
}

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

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

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(162, 35%, 33%);
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: hsl(162, 35%, 48%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px hsla(162, 35%, 48%, 0.2);
    border: none;
}

.accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: hsl(162, 35%, 48%);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    color: white;
    transform: rotate(0deg);
}

.accordion-body {
    padding: 30px;
    background: white;
    border-top: 1px solid hsl(162, 35%, 90%);
}

.accordion-body p {
    margin: 0;
    line-height: 1.7;
    color: hsl(162, 35%, 25%);
    font-size: 1rem;
}

.accordion-body ul {
    margin: 15px 0 0 0;
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 8px;
    color: hsl(162, 35%, 30%);
    line-height: 1.6;
}

.highlight-box {
    background: hsl(162, 35%, 95%);
    border-left: 4px solid hsl(162, 35%, 48%);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.testimonial-card:nth-child(odd) {
    transform: translateY(-20px);
}

.testimonial-card:nth-child(even) {
    transform: translateY(20px);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(162, 35%, 48%), hsl(162, 35%, 73%));
}

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

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

.client-info {
    border-top: 1px solid hsl(162, 35%, 73%);
    padding-top: 20px;
}

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

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card:nth-child(odd),
    .testimonial-card:nth-child(even) {
        transform: translateY(0);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: hsl(162, 35%, 73%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid hsl(162, 35%, 73%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(162, 35%, 33%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(162, 35%, 48%);
    box-shadow: 0 0 0 3px rgba(104, 159, 136, 0.2);
    transform: translateY(-2px);
}

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

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

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(104, 159, 136, 0.4);
    background: linear-gradient(135deg, hsl(162, 35%, 53%) 0%, hsl(162, 35%, 38%) 100%);
}

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

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

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

.info-title {
    color: hsl(162, 35%, 73%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.hours-title {
    color: hsl(162, 35%, 73%);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f7 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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="hsl(162, 35%, 48%)" opacity="0.05"/><circle cx="80" cy="40" r="1" fill="hsl(162, 35%, 33%)" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="hsl(162, 35%, 73%)" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(162, 35%, 33%);
    margin-bottom: 2rem;
    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(162, 35%, 48%), hsl(162, 35%, 73%));
    border-radius: 2px;
}

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

.content-block {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid hsl(162, 35%, 73%);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(162, 35%, 33%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: hsl(162, 35%, 48%);
    border-radius: 50%;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

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

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 70%, hsl(162, 35%, 48%) 100%);
    opacity: 0.1;
    pointer-events: none;
}

.highlight-text {
    color: hsl(162, 35%, 48%);
    font-weight: 600;
}

.mission-values {
    background: linear-gradient(135deg, hsl(162, 35%, 48%) 0%, hsl(162, 35%, 33%) 100%);
    color: white;
    border: none;
}

.mission-values .block-title {
    color: white;
}

.mission-values .block-title::before {
    background: hsl(162, 35%, 73%);
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 2rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
}

footer {
    background: linear-gradient(135deg, hsl(162, 35%, 33%) 0%, hsl(162, 35%, 28%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: #e8f4f1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(162, 35%, 73%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: #e8f4f1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: hsl(162, 35%, 73%);
    padding-left: 8px;
}

.footer-contact p {
    color: #e8f4f1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: hsl(162, 35%, 73%);
    margin-right: 10px;
    width: 20px;
}

.footer-phone {
    color: #e8f4f1 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: hsl(162, 35%, 73%) !important;
}

.footer-bottom {
    border-top: 1px solid hsl(162, 35%, 40%);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b8d4ce;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(162, 35%, 48%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(162, 35%, 73%);
    color: hsl(162, 35%, 33%);
    transform: translateY(-2px);
}

.cookie-text {
    color: #e8f4f1;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cookie-notice .row > div {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: auto;
    }
}