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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(200, 42%, 75%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 0 20px;
}

.content-image {
    flex: 0 0 400px;
    position: relative;
}

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

.content-image:hover img {
    transform: translateY(-10px);
}

.content-image::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: hsl(200, 42%, 57%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(200, 42%, 57%);
    margin-bottom: 25px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(200, 42%, 57%);
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(200, 42%, 85%);
    margin-bottom: 20px;
}

.highlight-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid hsl(200, 42%, 57%);
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

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

.value-item {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 50px;
    height: 50px;
    background: hsl(200, 42%, 57%);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.value-desc {
    font-size: 0.95rem;
    color: hsl(200, 42%, 75%);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-row {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .content-image {
        flex: none;
        width: 100%;
    }
    
    .content-text {
        padding: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.advantages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(200, 42%, 32%) 0%, hsl(200, 42%, 17%) 100%);
    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="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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: white;
}

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.advantage-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(200, 42%, 17%);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-card p {
    color: hsl(200, 42%, 32%);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(200, 42%, 32%) 0%, hsl(200, 42%, 17%) 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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

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

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

.section-header p {
    color: hsl(200, 42%, 80%);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    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.12);
    border-color: hsl(200, 42%, 57%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(200, 42%, 57%), hsl(200, 42%, 47%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

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

.chart-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header {
    text-align: center;
    margin-bottom: 40px;
}

.chart-header h3 {
    color: white;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.chart-header p {
    color: hsl(200, 42%, 75%);
    font-size: 1.1rem;
}

.progress-bars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.progress-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.progress-value {
    color: hsl(200, 42%, 57%);
    font-weight: 700;
    font-size: 1.1rem;
}

.progress-bar-custom {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(200, 42%, 57%), hsl(200, 42%, 47%));
    border-radius: 10px;
    transition: width 2s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

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

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

.testimonial-stat {
    background: rgba(255, 255, 255, 0.06);
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.testimonial-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.testimonial-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: hsl(200, 42%, 57%);
    margin-bottom: 8px;
}

.testimonial-text {
    color: hsl(200, 42%, 85%);
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .chart-section {
        padding: 30px 20px;
    }
    
    .progress-bars {
        grid-template-columns: 1fr;
    }
}

footer {
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(200, 42%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 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;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(200, 42%, 57%);
    text-decoration: underline;
}

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

.footer-contact a {
    color: hsl(200, 42%, 57%);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid hsl(200, 42%, 57%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-btn {
    background: hsl(200, 42%, 57%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(200, 42%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(200, 42%, 57%);
    color: hsl(200, 42%, 57%);
}

.cookie-btn-secondary:hover {
    background: hsl(200, 42%, 57%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

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

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

.privacy-header h1 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.privacy-header p {
    font-size: 1.1em;
    opacity: 0.9;
    margin: 0;
}

.privacy-section {
    background: white;
    margin: 30px 0;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px 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.8em;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.privacy-section h2::before {
    content: "▶";
    color: #3498db;
    margin-right: 15px;
    font-size: 0.8em;
}

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

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

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

.privacy-section li {
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
}

.privacy-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.1em;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 2px solid #27ae60;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #f39c12;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.update-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 8px;
}

footer {
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(200, 42%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 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;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(200, 42%, 57%);
    text-decoration: underline;
}

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

.footer-contact a {
    color: hsl(200, 42%, 57%);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid hsl(200, 42%, 57%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-btn {
    background: hsl(200, 42%, 57%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(200, 42%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(200, 42%, 57%);
    color: hsl(200, 42%, 57%);
}

.cookie-btn-secondary:hover {
    background: hsl(200, 42%, 57%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

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

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

.policy-header h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-header .subtitle {
    color: #7f8c8d;
    font-size: 1.2em;
    font-weight: 300;
}

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

.policy-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ecf0f1;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    color: #34495e;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #3498db;
}

.policy-text {
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

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

.cookie-type {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.cookie-type h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.cookie-type p {
    color: #666;
    font-size: 0.95em;
}

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

.highlight-box h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

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

.control-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.control-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.gdpr-notice {
    background: #e8f5e8;
    border: 1px solid #27ae60;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.gdpr-notice h4 {
    color: #27ae60;
    margin-bottom: 10px;
}

.last-updated {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}

footer {
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(200, 42%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 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;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(200, 42%, 57%);
    text-decoration: underline;
}

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

.footer-contact a {
    color: hsl(200, 42%, 57%);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid hsl(200, 42%, 57%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-btn {
    background: hsl(200, 42%, 57%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(200, 42%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(200, 42%, 57%);
    color: hsl(200, 42%, 57%);
}

.cookie-btn-secondary:hover {
    background: hsl(200, 42%, 57%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

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

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

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

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

.section-subtitle {
    color: hsl(200, 42%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-label {
    color: hsl(200, 42%, 17%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
}

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

.form-control:focus {
    border-color: hsl(200, 42%, 57%);
    box-shadow: 0 0 0 0.2rem rgba(76, 125, 161, 0.25);
    outline: none;
}

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

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(76, 125, 161, 0.4);
    background: linear-gradient(45deg, hsl(200, 42%, 62%) 0%, hsl(200, 42%, 37%) 100%);
}

.contact-info {
    color: white;
    padding: 30px 0;
}

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

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

.info-title {
    color: hsl(200, 42%, 80%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.working-hours {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid hsl(200, 42%, 57%);
}

.hours-title {
    color: hsl(200, 42%, 80%);
    font-weight: 600;
    margin-bottom: 10px;
}

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

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(200, 42%, 75%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 0 20px;
}

.content-image {
    flex: 0 0 400px;
    position: relative;
}

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

.content-image:hover img {
    transform: translateY(-10px);
}

.content-image::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: hsl(200, 42%, 57%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(200, 42%, 57%);
    margin-bottom: 25px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(200, 42%, 57%);
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(200, 42%, 85%);
    margin-bottom: 20px;
}

.highlight-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid hsl(200, 42%, 57%);
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

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

.value-item {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 50px;
    height: 50px;
    background: hsl(200, 42%, 57%);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.value-desc {
    font-size: 0.95rem;
    color: hsl(200, 42%, 75%);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-row {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .content-image {
        flex: none;
        width: 100%;
    }
    
    .content-text {
        padding: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(200, 42%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 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;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(200, 42%, 57%);
    text-decoration: underline;
}

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

.footer-contact a {
    color: hsl(200, 42%, 57%);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid hsl(200, 42%, 57%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-btn {
    background: hsl(200, 42%, 57%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(200, 42%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(200, 42%, 57%);
    color: hsl(200, 42%, 57%);
}

.cookie-btn-secondary:hover {
    background: hsl(200, 42%, 57%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

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

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></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: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(200, 42%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(200, 42%, 57%), hsl(200, 42%, 32%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

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

.service-title {
    color: hsl(200, 42%, 17%);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.service-description {
    color: hsl(200, 42%, 40%);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

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

.service-conditions {
    background: hsl(200, 42%, 95%);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: hsl(200, 42%, 30%);
    border-left: 4px solid hsl(200, 42%, 57%);
}

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

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

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

.benefits-list li {
    padding: 12px 0;
    color: hsl(200, 42%, 25%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(200, 42%, 57%);
    font-weight: bold;
    font-size: 1.3rem;
}

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(200, 42%, 80%);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    outline: none;
    border-color: hsl(200, 42%, 57%);
    box-shadow: 0 0 0 4px rgba(91, 142, 175, 0.2);
    background: white;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(45deg, hsl(200, 42%, 57%) 0%, hsl(200, 42%, 47%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(91, 142, 175, 0.3);
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(200, 42%, 47%) 0%, hsl(200, 42%, 37%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(91, 142, 175, 0.4);
}

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

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

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(200, 42%, 32%) 0%, hsl(200, 42%, 17%) 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"><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;
}

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

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

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

.testimonials-carousel {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 0 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: hsl(200, 42%, 17%);
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(200, 42%, 57%);
    line-height: 1;
    margin-right: 10px;
    font-family: serif;
}

.testimonial-author {
    border-top: 2px solid hsl(200, 42%, 57%);
    padding-top: 20px;
}

.author-name {
    font-weight: 700;
    color: hsl(200, 42%, 32%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-location {
    color: hsl(200, 42%, 57%);
    font-size: 0.9rem;
    font-weight: 500;
}

.carousel-controls {
    text-align: center;
    margin-top: 50px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: hsl(200, 42%, 57%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    margin: 0 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: white;
    color: hsl(200, 42%, 32%);
    transform: scale(1.1);
}

.carousel-indicators {
    bottom: -60px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: hsl(200, 42%, 57%);
}

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

footer {
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(200, 42%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 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;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(200, 42%, 57%);
    text-decoration: underline;
}

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

.footer-contact a {
    color: hsl(200, 42%, 57%);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid hsl(200, 42%, 57%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-btn {
    background: hsl(200, 42%, 57%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(200, 42%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(200, 42%, 57%);
    color: hsl(200, 42%, 57%);
}

.cookie-btn-secondary:hover {
    background: hsl(200, 42%, 57%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

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

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

.terms-section {
    margin-bottom: 35px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #3498db;
}

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

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

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

.important-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #f39c12;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
}

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

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

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

footer {
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(200, 42%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 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;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(200, 42%, 57%);
    text-decoration: underline;
}

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

.footer-contact a {
    color: hsl(200, 42%, 57%);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid hsl(200, 42%, 57%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-btn {
    background: hsl(200, 42%, 57%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(200, 42%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(200, 42%, 57%);
    color: hsl(200, 42%, 57%);
}

.cookie-btn-secondary:hover {
    background: hsl(200, 42%, 57%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

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

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.faq-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: hsl(200, 42%, 57%);
}

.faq-tab.active {
    background: hsl(200, 42%, 57%);
    border-color: hsl(200, 42%, 57%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: hsl(200, 42%, 57%);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: hsl(200, 42%, 57%);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: hsl(200, 42%, 57%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-icon::before {
    content: '+';
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: white;
}

.faq-item.active .faq-icon::before {
    color: hsl(200, 42%, 32%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    opacity: 0.9;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(200, 42%, 75%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 0 20px;
}

.content-image {
    flex: 0 0 400px;
    position: relative;
}

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

.content-image:hover img {
    transform: translateY(-10px);
}

.content-image::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: hsl(200, 42%, 57%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(200, 42%, 57%);
    margin-bottom: 25px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(200, 42%, 57%);
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(200, 42%, 85%);
    margin-bottom: 20px;
}

.highlight-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid hsl(200, 42%, 57%);
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

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

.value-item {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 50px;
    height: 50px;
    background: hsl(200, 42%, 57%);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.value-desc {
    font-size: 0.95rem;
    color: hsl(200, 42%, 75%);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-row {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .content-image {
        flex: none;
        width: 100%;
    }
    
    .content-text {
        padding: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

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

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

.benefits-list li {
    padding: 12px 0;
    color: hsl(200, 42%, 25%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(200, 42%, 57%);
    font-weight: bold;
    font-size: 1.3rem;
}

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(200, 42%, 80%);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    outline: none;
    border-color: hsl(200, 42%, 57%);
    box-shadow: 0 0 0 4px rgba(91, 142, 175, 0.2);
    background: white;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(45deg, hsl(200, 42%, 57%) 0%, hsl(200, 42%, 47%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(91, 142, 175, 0.3);
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(200, 42%, 47%) 0%, hsl(200, 42%, 37%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(91, 142, 175, 0.4);
}

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

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

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

footer {
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(200, 42%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 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;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(200, 42%, 57%);
    text-decoration: underline;
}

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

.footer-contact a {
    color: hsl(200, 42%, 57%);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid hsl(200, 42%, 57%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-btn {
    background: hsl(200, 42%, 57%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(200, 42%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(200, 42%, 57%);
    color: hsl(200, 42%, 57%);
}

.cookie-btn-secondary:hover {
    background: hsl(200, 42%, 57%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

.hero-section {
    background: linear-gradient(135deg, hsl(200, 42%, 32%) 0%, hsl(200, 42%, 17%) 100%);
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

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

.hero-subtitle {
    font-size: 1.5rem;
    color: hsl(200, 42%, 80%);
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.hero-image {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.hero-image:hover {
    transform: translateY(-10px);
}

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

.benefits-list li {
    padding: 0.8rem 0;
    color: hsl(200, 42%, 85%);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.benefits-list li i {
    color: hsl(200, 42%, 57%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.cta-buttons {
    margin-top: 3rem;
}

.btn-primary-custom {
    background: hsl(200, 42%, 57%);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-right: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
    background: hsl(200, 42%, 47%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .cta-buttons {
        text-align: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        margin: 0 auto 1rem auto;
        width: 80%;
        max-width: 300px;
    }
}

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

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.faq-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: hsl(200, 42%, 57%);
}

.faq-tab.active {
    background: hsl(200, 42%, 57%);
    border-color: hsl(200, 42%, 57%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: hsl(200, 42%, 57%);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: hsl(200, 42%, 57%);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: hsl(200, 42%, 57%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-icon::before {
    content: '+';
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: white;
}

.faq-item.active .faq-icon::before {
    color: hsl(200, 42%, 32%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    opacity: 0.9;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(200, 42%, 32%) 0%, hsl(200, 42%, 17%) 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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

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

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

.section-header p {
    color: hsl(200, 42%, 80%);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    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.12);
    border-color: hsl(200, 42%, 57%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(200, 42%, 57%), hsl(200, 42%, 47%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

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

.chart-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header {
    text-align: center;
    margin-bottom: 40px;
}

.chart-header h3 {
    color: white;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.chart-header p {
    color: hsl(200, 42%, 75%);
    font-size: 1.1rem;
}

.progress-bars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.progress-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.progress-value {
    color: hsl(200, 42%, 57%);
    font-weight: 700;
    font-size: 1.1rem;
}

.progress-bar-custom {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(200, 42%, 57%), hsl(200, 42%, 47%));
    border-radius: 10px;
    transition: width 2s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

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

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

.testimonial-stat {
    background: rgba(255, 255, 255, 0.06);
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.testimonial-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.testimonial-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: hsl(200, 42%, 57%);
    margin-bottom: 8px;
}

.testimonial-text {
    color: hsl(200, 42%, 85%);
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .chart-section {
        padding: 30px 20px;
    }
    
    .progress-bars {
        grid-template-columns: 1fr;
    }
}

.advantages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(200, 42%, 32%) 0%, hsl(200, 42%, 17%) 100%);
    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="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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: white;
}

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.advantage-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(200, 42%, 17%);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-card p {
    color: hsl(200, 42%, 32%);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

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

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

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></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: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(200, 42%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(200, 42%, 57%), hsl(200, 42%, 32%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

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

.service-title {
    color: hsl(200, 42%, 17%);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.service-description {
    color: hsl(200, 42%, 40%);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

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

.service-conditions {
    background: hsl(200, 42%, 95%);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: hsl(200, 42%, 30%);
    border-left: 4px solid hsl(200, 42%, 57%);
}

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

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

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

.benefits-list li {
    padding: 12px 0;
    color: hsl(200, 42%, 25%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(200, 42%, 57%);
    font-weight: bold;
    font-size: 1.3rem;
}

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(200, 42%, 80%);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.email-input:focus {
    outline: none;
    border-color: hsl(200, 42%, 57%);
    box-shadow: 0 0 0 4px rgba(91, 142, 175, 0.2);
    background: white;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(45deg, hsl(200, 42%, 57%) 0%, hsl(200, 42%, 47%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(91, 142, 175, 0.3);
}

.subscribe-btn:hover {
    background: linear-gradient(45deg, hsl(200, 42%, 47%) 0%, hsl(200, 42%, 37%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(91, 142, 175, 0.4);
}

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

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

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

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

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

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

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

.section-subtitle {
    color: hsl(200, 42%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-label {
    color: hsl(200, 42%, 17%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
}

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

.form-control:focus {
    border-color: hsl(200, 42%, 57%);
    box-shadow: 0 0 0 0.2rem rgba(76, 125, 161, 0.25);
    outline: none;
}

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

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(76, 125, 161, 0.4);
    background: linear-gradient(45deg, hsl(200, 42%, 62%) 0%, hsl(200, 42%, 37%) 100%);
}

.contact-info {
    color: white;
    padding: 30px 0;
}

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

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

.info-title {
    color: hsl(200, 42%, 80%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.working-hours {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid hsl(200, 42%, 57%);
}

.hours-title {
    color: hsl(200, 42%, 80%);
    font-weight: 600;
    margin-bottom: 10px;
}

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

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(200, 42%, 75%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 0 20px;
}

.content-image {
    flex: 0 0 400px;
    position: relative;
}

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

.content-image:hover img {
    transform: translateY(-10px);
}

.content-image::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: hsl(200, 42%, 57%);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: hsl(200, 42%, 57%);
    margin-bottom: 25px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(200, 42%, 57%);
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(200, 42%, 85%);
    margin-bottom: 20px;
}

.highlight-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid hsl(200, 42%, 57%);
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

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

.value-item {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 50px;
    height: 50px;
    background: hsl(200, 42%, 57%);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.value-desc {
    font-size: 0.95rem;
    color: hsl(200, 42%, 75%);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-row {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .content-image {
        flex: none;
        width: 100%;
    }
    
    .content-text {
        padding: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(200, 42%, 32%) 0%, hsl(200, 42%, 17%) 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"><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;
}

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

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

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

.testimonials-carousel {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 0 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: hsl(200, 42%, 17%);
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(200, 42%, 57%);
    line-height: 1;
    margin-right: 10px;
    font-family: serif;
}

.testimonial-author {
    border-top: 2px solid hsl(200, 42%, 57%);
    padding-top: 20px;
}

.author-name {
    font-weight: 700;
    color: hsl(200, 42%, 32%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-location {
    color: hsl(200, 42%, 57%);
    font-size: 0.9rem;
    font-weight: 500;
}

.carousel-controls {
    text-align: center;
    margin-top: 50px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: hsl(200, 42%, 57%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    margin: 0 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: white;
    color: hsl(200, 42%, 32%);
    transform: scale(1.1);
}

.carousel-indicators {
    bottom: -60px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: hsl(200, 42%, 57%);
}

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

footer {
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h5 {
    color: hsl(200, 42%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 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;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: hsl(200, 42%, 57%);
    text-decoration: underline;
}

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

.footer-contact a {
    color: hsl(200, 42%, 57%);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(200, 42%, 17%) 0%, hsl(200, 42%, 32%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid hsl(200, 42%, 57%);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-btn {
    background: hsl(200, 42%, 57%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: hsl(200, 42%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(200, 42%, 57%);
    color: hsl(200, 42%, 57%);
}

.cookie-btn-secondary:hover {
    background: hsl(200, 42%, 57%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}