:root {
            --primary-color: hsl(117, 68%, 50%);
            --secondary-color: hsl(117, 68%, 35%);
            --accent-color: hsl(117, 68%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            margin: 0 0.2rem;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.6rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.2rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: var(--secondary-color) !important;
            }
        }

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="hsl(117, 68%, 50%)" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="hsl(117, 68%, 35%)" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(117, 68%, 35%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, hsl(117, 68%, 50%), hsl(117, 68%, 75%));
    border-radius: 2px;
}

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

.content-block {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, hsl(117, 68%, 50%), hsl(117, 68%, 75%));
}

.block-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(117, 68%, 35%);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(117, 68%, 50%, 0.1), hsl(117, 68%, 75%, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

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

.highlight-text {
    color: hsl(117, 68%, 50%);
    font-weight: 600;
    position: relative;
}

.emphasis-box {
    background: linear-gradient(135deg, hsl(117, 68%, 75%, 0.1), hsl(117, 68%, 50%, 0.05));
    border-left: 5px solid hsl(117, 68%, 50%);
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.15rem;
    position: relative;
}

.emphasis-box::before {
    content: '"';
    font-size: 4rem;
    color: hsl(117, 68%, 75%);
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: serif;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 300px;
    }
    
    .image-container {
        transform: none;
    }
}

.advantages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(117,68,50,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(117,68,50,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    color: hsl(117, 68%, 35%);
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

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

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

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(117,68,50,0.2);
    border-color: hsl(117, 68%, 75%);
}

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

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

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

.advantage-title {
    color: hsl(117, 68%, 35%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.advantage-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1.1rem;
}

.zigzag-left {
    padding-right: 3rem;
}

.zigzag-right {
    padding-left: 3rem;
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: hsl(117, 68%, 75%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 35%) 100%);
    padding: 100px 0;
    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)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

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

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

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

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

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

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 2.5rem;
    color: white;
}

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

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

footer {
    background: linear-gradient(135deg, hsl(117, 68%, 35%), hsl(117, 68%, 30%));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand {
    color: hsl(117, 68%, 75%);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(117, 68%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(117, 68%, 75%);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.footer-contact a {
    color: hsl(117, 68%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.cookie-btn {
    background: hsl(117, 68%, 50%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: hsl(117, 68%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(117, 68%, 75%);
    color: hsl(117, 68%, 75%);
}

.cookie-btn-secondary:hover {
    background: hsl(117, 68%, 75%);
    color: hsl(117, 68%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(117, 68%, 50%);
            --secondary-color: hsl(117, 68%, 35%);
            --accent-color: hsl(117, 68%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            margin: 0 0.2rem;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.6rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.2rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: var(--secondary-color) !important;
            }
        }

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

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-header h1 {
    font-size: 2.8rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.privacy-header p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

.privacy-section {
    background: white;
    margin: 30px 0;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.privacy-section h2::before {
    content: "▶";
    color: #3498db;
    margin-right: 10px;
    font-size: 1.2rem;
}

.privacy-section h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

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

.privacy-list li {
    margin: 12px 0;
    padding: 10px 0 10px 25px;
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px 20px;
    border-left: 3px solid #3498db;
}

.privacy-list li::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.highlight-box {
    background: linear-gradient(135deg, #e8f4fd 0%, #c3e3fd 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #3498db;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 15px;
    border-radius: 8px;
    margin-top: 40px;
    font-size: 1.1rem;
}

.gdpr-badge {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 10px 0;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

footer {
    background: linear-gradient(135deg, hsl(117, 68%, 35%), hsl(117, 68%, 30%));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand {
    color: hsl(117, 68%, 75%);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(117, 68%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(117, 68%, 75%);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.footer-contact a {
    color: hsl(117, 68%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.cookie-btn {
    background: hsl(117, 68%, 50%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: hsl(117, 68%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(117, 68%, 75%);
    color: hsl(117, 68%, 75%);
}

.cookie-btn-secondary:hover {
    background: hsl(117, 68%, 75%);
    color: hsl(117, 68%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(117, 68%, 50%);
            --secondary-color: hsl(117, 68%, 35%);
            --accent-color: hsl(117, 68%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            margin: 0 0.2rem;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.6rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.2rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: var(--secondary-color) !important;
            }
        }

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

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.policy-header h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.policy-header p {
    font-size: 1.2em;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.policy-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 35px;
    padding: 25px;
    border-left: 4px solid #3498db;
    background: linear-gradient(90deg, rgba(52, 152, 219, 0.05) 0%, transparent 100%);
    border-radius: 0 10px 10px 0;
}

.policy-section h2 {
    color: #2980b9;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.policy-section h3 {
    color: #34495e;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

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

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

.cookie-type {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cookie-type h4 {
    color: #2980b9;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f4fd 0%, #d1ecf1 100%);
    border: 1px solid #bee5eb;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
}

.highlight-box::before {
    content: '💡';
    position: absolute;
    top: -10px;
    left: 20px;
    background: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 1.2em;
}

.consent-controls {
    background: linear-gradient(135deg, #f1f8ff 0%, #e6f3ff 100%);
    border: 2px solid #3498db;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.consent-controls h3 {
    color: #2980b9;
    margin-bottom: 15px;
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    border-radius: 10px;
    font-weight: 500;
}

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

li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

strong {
    color: #2980b9;
    font-weight: 600;
}

footer {
    background: linear-gradient(135deg, hsl(117, 68%, 35%), hsl(117, 68%, 30%));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand {
    color: hsl(117, 68%, 75%);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(117, 68%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(117, 68%, 75%);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.footer-contact a {
    color: hsl(117, 68%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.cookie-btn {
    background: hsl(117, 68%, 50%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: hsl(117, 68%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(117, 68%, 75%);
    color: hsl(117, 68%, 75%);
}

.cookie-btn-secondary:hover {
    background: hsl(117, 68%, 75%);
    color: hsl(117, 68%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(117, 68%, 50%);
            --secondary-color: hsl(117, 68%, 35%);
            --accent-color: hsl(117, 68%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            margin: 0 0.2rem;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.6rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.2rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: var(--secondary-color) !important;
            }
        }

.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(117,68,50,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(117, 68%, 35%);
    margin-bottom: 20px;
    position: relative;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(117, 68%, 50%, 0.1);
    position: relative;
    z-index: 2;
    height: 100%;
}

.contact-info-card {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 35%) 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.form-label {
    font-weight: 600;
    color: hsl(117, 68%, 35%);
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
}

.form-control:focus {
    border-color: hsl(117, 68%, 50%);
    box-shadow: 0 0 0 0.2rem rgba(117, 68%, 50%, 0.25);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.btn-submit {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 35%) 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(117, 68%, 50%, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.info-item {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-item h4::before {
    content: '✦';
    margin-right: 10px;
    font-size: 1rem;
    opacity: 0.8;
}

.info-item p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.consultation-process {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.consultation-process h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-steps li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.process-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 8px;
    font-weight: bold;
    opacity: 0.8;
}

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="hsl(117, 68%, 50%)" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="hsl(117, 68%, 35%)" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(117, 68%, 35%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, hsl(117, 68%, 50%), hsl(117, 68%, 75%));
    border-radius: 2px;
}

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

.content-block {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, hsl(117, 68%, 50%), hsl(117, 68%, 75%));
}

.block-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(117, 68%, 35%);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(117, 68%, 50%, 0.1), hsl(117, 68%, 75%, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

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

.highlight-text {
    color: hsl(117, 68%, 50%);
    font-weight: 600;
    position: relative;
}

.emphasis-box {
    background: linear-gradient(135deg, hsl(117, 68%, 75%, 0.1), hsl(117, 68%, 50%, 0.05));
    border-left: 5px solid hsl(117, 68%, 50%);
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.15rem;
    position: relative;
}

.emphasis-box::before {
    content: '"';
    font-size: 4rem;
    color: hsl(117, 68%, 75%);
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: serif;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 300px;
    }
    
    .image-container {
        transform: none;
    }
}

footer {
    background: linear-gradient(135deg, hsl(117, 68%, 35%), hsl(117, 68%, 30%));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand {
    color: hsl(117, 68%, 75%);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(117, 68%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(117, 68%, 75%);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.footer-contact a {
    color: hsl(117, 68%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.cookie-btn {
    background: hsl(117, 68%, 50%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: hsl(117, 68%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(117, 68%, 75%);
    color: hsl(117, 68%, 75%);
}

.cookie-btn-secondary:hover {
    background: hsl(117, 68%, 75%);
    color: hsl(117, 68%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(117, 68%, 50%);
            --secondary-color: hsl(117, 68%, 35%);
            --accent-color: hsl(117, 68%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            margin: 0 0.2rem;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.6rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.2rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: var(--secondary-color) !important;
            }
        }

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

.services-title {
    color: hsl(117, 68%, 35%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

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

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

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

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

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: hsl(117, 68%, 75%);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

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

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(117, 68%, 35%), hsl(117, 68%, 50%));
}

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

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

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

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

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 35%) 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.newsletter-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

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

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

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

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

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

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

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

.email-input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    color: #333;
    transition: all 0.3s ease;
}

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

.email-input::placeholder {
    color: #666;
}

.subscribe-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    color: hsl(117, 68%, 35%);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-width: 160px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #f8f8f8, #e0e0e0);
}

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

.privacy-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 35%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.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(117, 68%, 75%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

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

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

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

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

.client-info {
    border-top: 2px solid hsl(117, 68%, 75%);
    padding-top: 1.5rem;
}

.client-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(117, 68%, 35%);
    margin-bottom: 0.5rem;
}

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

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        min-width: 300px;
        padding: 2rem;
    }
    
    .testimonial-track {
        gap: 1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(117, 68%, 35%), hsl(117, 68%, 30%));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand {
    color: hsl(117, 68%, 75%);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(117, 68%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(117, 68%, 75%);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.footer-contact a {
    color: hsl(117, 68%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.cookie-btn {
    background: hsl(117, 68%, 50%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: hsl(117, 68%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(117, 68%, 75%);
    color: hsl(117, 68%, 75%);
}

.cookie-btn-secondary:hover {
    background: hsl(117, 68%, 75%);
    color: hsl(117, 68%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(117, 68%, 50%);
            --secondary-color: hsl(117, 68%, 35%);
            --accent-color: hsl(117, 68%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            margin: 0 0.2rem;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.6rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.2rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: var(--secondary-color) !important;
            }
        }

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

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

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

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

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2980b9;
    margin: 40px 0 20px 0;
    padding-left: 20px;
    border-left: 5px solid #3498db;
    background: linear-gradient(90deg, rgba(52,152,219,0.1) 0%, transparent 100%);
    padding: 15px 0 15px 20px;
    border-radius: 0 10px 10px 0;
}

.terms-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

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

.highlight-box {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(116,185,255,0.3);
}

.highlight-text {
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
}

.subsection {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #17a2b8;
}

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

footer {
    background: linear-gradient(135deg, hsl(117, 68%, 35%), hsl(117, 68%, 30%));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand {
    color: hsl(117, 68%, 75%);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(117, 68%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(117, 68%, 75%);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.footer-contact a {
    color: hsl(117, 68%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.cookie-btn {
    background: hsl(117, 68%, 50%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: hsl(117, 68%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(117, 68%, 75%);
    color: hsl(117, 68%, 75%);
}

.cookie-btn-secondary:hover {
    background: hsl(117, 68%, 75%);
    color: hsl(117, 68%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(117, 68%, 50%);
            --secondary-color: hsl(117, 68%, 35%);
            --accent-color: hsl(117, 68%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            margin: 0 0.2rem;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.6rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.2rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: var(--secondary-color) !important;
            }
        }

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

.faq-title {
    color: hsl(117, 68%, 35%);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-subtitle {
    color: hsl(117, 68%, 40%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-button {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 45%) 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 20px 25px;
    font-size: 1.1rem;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(117, 68%, 35%) 0%, hsl(117, 68%, 30%) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.accordion-button:focus {
    border-color: hsl(117, 68%, 50%);
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}

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

.accordion-body {
    background: white;
    padding: 25px;
    color: hsl(117, 68%, 25%);
    font-size: 1rem;
    line-height: 1.7;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-column {
    padding: 0 15px;
}

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="hsl(117, 68%, 50%)" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="hsl(117, 68%, 35%)" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(117, 68%, 35%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, hsl(117, 68%, 50%), hsl(117, 68%, 75%));
    border-radius: 2px;
}

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

.content-block {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, hsl(117, 68%, 50%), hsl(117, 68%, 75%));
}

.block-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(117, 68%, 35%);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(117, 68%, 50%, 0.1), hsl(117, 68%, 75%, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

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

.highlight-text {
    color: hsl(117, 68%, 50%);
    font-weight: 600;
    position: relative;
}

.emphasis-box {
    background: linear-gradient(135deg, hsl(117, 68%, 75%, 0.1), hsl(117, 68%, 50%, 0.05));
    border-left: 5px solid hsl(117, 68%, 50%);
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.15rem;
    position: relative;
}

.emphasis-box::before {
    content: '"';
    font-size: 4rem;
    color: hsl(117, 68%, 75%);
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: serif;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 300px;
    }
    
    .image-container {
        transform: none;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 35%) 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.newsletter-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

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

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

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

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

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

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

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

.email-input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    color: #333;
    transition: all 0.3s ease;
}

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

.email-input::placeholder {
    color: #666;
}

.subscribe-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    color: hsl(117, 68%, 35%);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-width: 160px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #f8f8f8, #e0e0e0);
}

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

.privacy-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(117, 68%, 35%), hsl(117, 68%, 30%));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand {
    color: hsl(117, 68%, 75%);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(117, 68%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(117, 68%, 75%);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.footer-contact a {
    color: hsl(117, 68%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.cookie-btn {
    background: hsl(117, 68%, 50%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: hsl(117, 68%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(117, 68%, 75%);
    color: hsl(117, 68%, 75%);
}

.cookie-btn-secondary:hover {
    background: hsl(117, 68%, 75%);
    color: hsl(117, 68%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(117, 68%, 50%);
            --secondary-color: hsl(117, 68%, 35%);
            --accent-color: hsl(117, 68%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            margin: 0 0.2rem;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 0.4rem 0.6rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(90deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.2rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: var(--secondary-color) !important;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 35%) 100%);
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.hero-title {
    grid-area: title;
    color: white;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -2px;
}

.hero-subtitle {
    color: hsl(117, 68%, 75%);
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 15px;
    margin-bottom: 0;
}

.hero-description {
    grid-area: description;
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-description p {
    margin-bottom: 20px;
}

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

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

.hero-benefits i {
    color: hsl(117, 68%, 75%);
    margin-right: 15px;
    font-size: 1.3rem;
    width: 20px;
}

.hero-image {
    grid-area: image;
    text-align: center;
}

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

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

.hero-cta {
    grid-area: cta-buttons;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    background: white;
    color: hsl(117, 68%, 35%);
    border: none;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-primary:hover {
    background: hsl(117, 68%, 75%);
    color: hsl(117, 68%, 35%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    text-decoration: none;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: hsl(117, 68%, 35%);
    transform: translateY(-3px);
    text-decoration: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(255,255,255,0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

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

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "title"
            "image"
            "description"
            "cta-buttons";
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-image img {
        transform: none;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

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

.faq-title {
    color: hsl(117, 68%, 35%);
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-subtitle {
    color: hsl(117, 68%, 40%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-button {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 45%) 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 20px 25px;
    font-size: 1.1rem;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(117, 68%, 35%) 0%, hsl(117, 68%, 30%) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.accordion-button:focus {
    border-color: hsl(117, 68%, 50%);
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}

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

.accordion-body {
    background: white;
    padding: 25px;
    color: hsl(117, 68%, 25%);
    font-size: 1rem;
    line-height: 1.7;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-column {
    padding: 0 15px;
}

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

.advantages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(117,68,50,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(117,68,50,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    color: hsl(117, 68%, 35%);
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

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

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

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(117,68,50,0.2);
    border-color: hsl(117, 68%, 75%);
}

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

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

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

.advantage-title {
    color: hsl(117, 68%, 35%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.advantage-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1.1rem;
}

.zigzag-left {
    padding-right: 3rem;
}

.zigzag-right {
    padding-left: 3rem;
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: hsl(117, 68%, 75%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 35%) 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.newsletter-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

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

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

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

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

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

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

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

.email-input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    color: #333;
    transition: all 0.3s ease;
}

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

.email-input::placeholder {
    color: #666;
}

.subscribe-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    color: hsl(117, 68%, 35%);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-width: 160px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #f8f8f8, #e0e0e0);
}

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

.privacy-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 35%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.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(117, 68%, 75%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

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

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

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

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

.client-info {
    border-top: 2px solid hsl(117, 68%, 75%);
    padding-top: 1.5rem;
}

.client-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(117, 68%, 35%);
    margin-bottom: 0.5rem;
}

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

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        min-width: 300px;
        padding: 2rem;
    }
    
    .testimonial-track {
        gap: 1rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 35%) 100%);
    padding: 100px 0;
    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)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

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

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

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

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

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

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 2.5rem;
    color: white;
}

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

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="hsl(117, 68%, 50%)" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="hsl(117, 68%, 35%)" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(117, 68%, 35%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, hsl(117, 68%, 50%), hsl(117, 68%, 75%));
    border-radius: 2px;
}

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

.content-block {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, hsl(117, 68%, 50%), hsl(117, 68%, 75%));
}

.block-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(117, 68%, 35%);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(117, 68%, 50%, 0.1), hsl(117, 68%, 75%, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

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

.highlight-text {
    color: hsl(117, 68%, 50%);
    font-weight: 600;
    position: relative;
}

.emphasis-box {
    background: linear-gradient(135deg, hsl(117, 68%, 75%, 0.1), hsl(117, 68%, 50%, 0.05));
    border-left: 5px solid hsl(117, 68%, 50%);
    padding: 30px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.15rem;
    position: relative;
}

.emphasis-box::before {
    content: '"';
    font-size: 4rem;
    color: hsl(117, 68%, 75%);
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: serif;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 300px;
    }
    
    .image-container {
        transform: none;
    }
}

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

.services-title {
    color: hsl(117, 68%, 35%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

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

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

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

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

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: hsl(117, 68%, 75%);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

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

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(117, 68%, 35%), hsl(117, 68%, 50%));
}

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

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

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

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

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

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

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

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

.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(117,68,50,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(117, 68%, 35%);
    margin-bottom: 20px;
    position: relative;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(117, 68%, 50%, 0.1);
    position: relative;
    z-index: 2;
    height: 100%;
}

.contact-info-card {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 35%) 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.form-label {
    font-weight: 600;
    color: hsl(117, 68%, 35%);
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
}

.form-control:focus {
    border-color: hsl(117, 68%, 50%);
    box-shadow: 0 0 0 0.2rem rgba(117, 68%, 50%, 0.25);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.btn-submit {
    background: linear-gradient(135deg, hsl(117, 68%, 50%) 0%, hsl(117, 68%, 35%) 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(117, 68%, 50%, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.info-item {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.info-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-item h4::before {
    content: '✦';
    margin-right: 10px;
    font-size: 1rem;
    opacity: 0.8;
}

.info-item p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.consultation-process {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.consultation-process h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-steps li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.process-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 8px;
    font-weight: bold;
    opacity: 0.8;
}

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

footer {
    background: linear-gradient(135deg, hsl(117, 68%, 35%), hsl(117, 68%, 30%));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-brand {
    color: hsl(117, 68%, 75%);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(117, 68%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(117, 68%, 75%);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.footer-contact a {
    color: hsl(117, 68%, 75%);
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.cookie-btn {
    background: hsl(117, 68%, 50%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: hsl(117, 68%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(117, 68%, 75%);
    color: hsl(117, 68%, 75%);
}

.cookie-btn-secondary:hover {
    background: hsl(117, 68%, 75%);
    color: hsl(117, 68%, 30%);
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}