:root {
            --primary-color: hsl(236, 63%, 34%);
            --secondary-color: hsl(236, 63%, 19%);
            --accent-color: hsl(236, 63%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        
        .logo-img {
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.about-section {
    background: linear-gradient(135deg, hsl(236, 63%, 34%) 0%, hsl(236, 63%, 19%) 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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(236, 63%, 59%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, hsl(236, 63%, 59%), transparent);
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, hsl(236, 63%, 59%), hsl(236, 63%, 34%));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

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

.timeline-content {
    width: 45%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.timeline-image {
    width: 45%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.timeline-image:hover img {
    transform: scale(1.1);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: hsl(236, 63%, 59%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: hsl(236, 63%, 59%);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.highlight-text {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-bottom: 60px;
    }
    
    .timeline-content,
    .timeline-image {
        width: 100%;
        margin-left: 60px;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(236, 63%, 59%);
    border-radius: 2px;
}

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

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(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 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(236, 63%, 59%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(236, 63%, 59%), hsl(236, 63%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

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

.advantage-title {
    color: hsl(236, 63%, 19%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.advantage-description {
    color: hsl(236, 63%, 34%);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.zigzag-left {
    transform: translateX(-20px);
}

.zigzag-right {
    transform: translateX(20px);
}

@media (max-width: 768px) {
    .zigzag-left,
    .zigzag-right {
        transform: translateX(0);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 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.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(236, 63%, 59%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    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.08);
    border-color: hsl(236, 63%, 59%);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(236, 63%, 59%);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

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

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

.chart-title {
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.progress-item {
    margin-bottom: 25px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(236, 63%, 59%), hsl(236, 63%, 34%));
    border-radius: 6px;
    position: relative;
    transition: width 2s ease-in-out;
}

.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: 30px;
    margin-top: 50px;
}

.testimonial-stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.testimonial-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

footer {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e9ea;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-section h5 {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(236, 63%, 59%);
}

.footer-contact p {
    margin-bottom: 8px;
    color: #e8e9ea;
}

.footer-contact a {
    color: hsl(236, 63%, 59%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice p {
    margin-bottom: 15px;
    color: #e8e9ea;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(236, 63%, 59%);
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(236, 63%, 49%);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(236, 63%, 59%);
    color: hsl(236, 63%, 59%);
}

.cookie-btn-secondary:hover {
    background: hsl(236, 63%, 59%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin-bottom: 10px;
        margin-right: 10px;
    }
}

:root {
            --primary-color: hsl(236, 63%, 34%);
            --secondary-color: hsl(236, 63%, 19%);
            --accent-color: hsl(236, 63%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        
        .logo-img {
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

.privacy-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);
}

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

.privacy-header p {
    color: #7f8c8d;
    font-size: 1.1em;
}

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

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #ecf0f1;
}

.privacy-section:last-child {
    border-bottom: none;
}

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

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

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

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

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

.privacy-list li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 10px;
    font-size: 1.2em;
}

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

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

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

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

.update-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    color: #856404;
}

footer {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e9ea;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-section h5 {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(236, 63%, 59%);
}

.footer-contact p {
    margin-bottom: 8px;
    color: #e8e9ea;
}

.footer-contact a {
    color: hsl(236, 63%, 59%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice p {
    margin-bottom: 15px;
    color: #e8e9ea;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(236, 63%, 59%);
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(236, 63%, 49%);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(236, 63%, 59%);
    color: hsl(236, 63%, 59%);
}

.cookie-btn-secondary:hover {
    background: hsl(236, 63%, 59%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin-bottom: 10px;
        margin-right: 10px;
    }
}

:root {
            --primary-color: hsl(236, 63%, 34%);
            --secondary-color: hsl(236, 63%, 19%);
            --accent-color: hsl(236, 63%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        
        .logo-img {
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

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

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

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

.section-title {
    font-size: 1.8em;
    font-weight: 600;
    color: #34495e;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    position: relative;
}

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

.policy-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #34495e;
}

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

.cookie-type {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.cookie-type:hover {
    transform: translateY(-5px);
}

.cookie-type h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-left: 5px solid #e67e22;
    padding: 25px;
    margin: 25px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.consent-info {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid #16a085;
}

.gdpr-compliance {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 5px solid #8e44ad;
}

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

footer {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e9ea;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-section h5 {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(236, 63%, 59%);
}

.footer-contact p {
    margin-bottom: 8px;
    color: #e8e9ea;
}

.footer-contact a {
    color: hsl(236, 63%, 59%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice p {
    margin-bottom: 15px;
    color: #e8e9ea;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(236, 63%, 59%);
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(236, 63%, 49%);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(236, 63%, 59%);
    color: hsl(236, 63%, 59%);
}

.cookie-btn-secondary:hover {
    background: hsl(236, 63%, 59%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin-bottom: 10px;
        margin-right: 10px;
    }
}

:root {
            --primary-color: hsl(236, 63%, 34%);
            --secondary-color: hsl(236, 63%, 19%);
            --accent-color: hsl(236, 63%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        
        .logo-img {
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

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

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

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 500px 1fr;
    gap: 40px;
    align-items: start;
}

.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);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

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

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

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid hsl(236, 63%, 85%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(236, 63%, 34%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(236, 63%, 59%);
    box-shadow: 0 0 0 3px rgba(146, 122, 207, 0.2);
    transform: translateY(-2px);
}

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, hsl(236, 63%, 59%) 0%, hsl(236, 63%, 34%) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(146, 122, 207, 0.4);
}

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

.contact-info {
    color: white;
}

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

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(236, 63%, 85%);
    margin-bottom: 15px;
}

.info-text {
    color: hsl(236, 63%, 90%);
    line-height: 1.7;
    font-size: 1rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.day {
    font-weight: 600;
    color: hsl(236, 63%, 85%);
}

.time {
    color: hsl(236, 63%, 90%);
}

@media (max-width: 1200px) {
    .contact-content {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info {
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(236, 63%, 34%) 0%, hsl(236, 63%, 19%) 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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(236, 63%, 59%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, hsl(236, 63%, 59%), transparent);
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, hsl(236, 63%, 59%), hsl(236, 63%, 34%));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

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

.timeline-content {
    width: 45%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.timeline-image {
    width: 45%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.timeline-image:hover img {
    transform: scale(1.1);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: hsl(236, 63%, 59%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: hsl(236, 63%, 59%);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.highlight-text {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-bottom: 60px;
    }
    
    .timeline-content,
    .timeline-image {
        width: 100%;
        margin-left: 60px;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e9ea;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-section h5 {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(236, 63%, 59%);
}

.footer-contact p {
    margin-bottom: 8px;
    color: #e8e9ea;
}

.footer-contact a {
    color: hsl(236, 63%, 59%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice p {
    margin-bottom: 15px;
    color: #e8e9ea;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(236, 63%, 59%);
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(236, 63%, 49%);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(236, 63%, 59%);
    color: hsl(236, 63%, 59%);
}

.cookie-btn-secondary:hover {
    background: hsl(236, 63%, 59%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin-bottom: 10px;
        margin-right: 10px;
    }
}

:root {
            --primary-color: hsl(236, 63%, 34%);
            --secondary-color: hsl(236, 63%, 19%);
            --accent-color: hsl(236, 63%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        
        .logo-img {
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsla(236, 63%, 59%, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, hsla(236, 63%, 59%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-subtitle {
    color: hsl(236, 63%, 59%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    border-color: hsl(236, 63%, 59%);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(236, 63%, 34%);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: block;
}

.service-card:hover .service-icon {
    color: hsl(236, 63%, 59%);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(236, 63%, 19%);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: hsl(236, 63%, 34%);
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: hsl(236, 63%, 59%);
    margin-bottom: 1rem;
}

.service-duration {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
}

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

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 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="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" 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;
}

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

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(236, 63%, 19%);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: hsl(236, 63%, 59%);
    border-radius: 2px;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: hsl(236, 63%, 34%);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(236, 63%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(236, 63%, 19%);
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 0.95rem;
    color: hsl(236, 63%, 34%);
    line-height: 1.5;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 2px solid hsl(236, 63%, 59%);
    border-radius: 50px;
    background: white;
    color: hsl(236, 63%, 19%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(236, 63%, 34%);
    box-shadow: 0 0 0 4px rgba(93, 95, 239, 0.1);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: hsl(236, 63%, 59%);
    opacity: 0.8;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, hsl(236, 63%, 59%) 0%, hsl(236, 63%, 34%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(93, 95, 239, 0.4);
}

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

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

.privacy-text {
    text-align: center;
    font-size: 0.9rem;
    color: hsl(236, 63%, 34%);
    margin-top: 20px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-container {
    height: 600px;
    overflow: hidden;
    position: relative;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    min-height: 200px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.testimonial-author {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

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

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

.testimonials-scroll::after {
    content: '';
    height: 600px;
}

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

footer {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e9ea;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-section h5 {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(236, 63%, 59%);
}

.footer-contact p {
    margin-bottom: 8px;
    color: #e8e9ea;
}

.footer-contact a {
    color: hsl(236, 63%, 59%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice p {
    margin-bottom: 15px;
    color: #e8e9ea;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(236, 63%, 59%);
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(236, 63%, 49%);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(236, 63%, 59%);
    color: hsl(236, 63%, 59%);
}

.cookie-btn-secondary:hover {
    background: hsl(236, 63%, 59%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin-bottom: 10px;
        margin-right: 10px;
    }
}

:root {
            --primary-color: hsl(236, 63%, 34%);
            --secondary-color: hsl(236, 63%, 19%);
            --accent-color: hsl(236, 63%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        
        .logo-img {
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

.terms-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 #34495e;
    padding-bottom: 15px;
}

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

.section-title {
    font-size: 1.4em;
    color: #2c3e50;
    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, #a8edea 0%, #fed6e3 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.important-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    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: "▪";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

footer {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e9ea;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-section h5 {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(236, 63%, 59%);
}

.footer-contact p {
    margin-bottom: 8px;
    color: #e8e9ea;
}

.footer-contact a {
    color: hsl(236, 63%, 59%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice p {
    margin-bottom: 15px;
    color: #e8e9ea;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(236, 63%, 59%);
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(236, 63%, 49%);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(236, 63%, 59%);
    color: hsl(236, 63%, 59%);
}

.cookie-btn-secondary:hover {
    background: hsl(236, 63%, 59%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin-bottom: 10px;
        margin-right: 10px;
    }
}

:root {
            --primary-color: hsl(236, 63%, 34%);
            --secondary-color: hsl(236, 63%, 19%);
            --accent-color: hsl(236, 63%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        
        .logo-img {
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    padding: 80px 0;
    color: white;
}

.faq-title {
    color: hsl(236, 63%, 59%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: rgba(255,255,255,0.8);
}

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

.accordion-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.accordion-button {
    background: transparent;
    color: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: hsl(236, 63%, 59%);
    background: rgba(255,255,255,0.1);
}

.accordion-button::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(236, 63%, 59%);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.accordion-body {
    padding: 0 30px 25px 30px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 1rem;
}

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

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

.about-section {
    background: linear-gradient(135deg, hsl(236, 63%, 34%) 0%, hsl(236, 63%, 19%) 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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(236, 63%, 59%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, hsl(236, 63%, 59%), transparent);
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, hsl(236, 63%, 59%), hsl(236, 63%, 34%));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

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

.timeline-content {
    width: 45%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.timeline-image {
    width: 45%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.timeline-image:hover img {
    transform: scale(1.1);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: hsl(236, 63%, 59%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: hsl(236, 63%, 59%);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.highlight-text {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-bottom: 60px;
    }
    
    .timeline-content,
    .timeline-image {
        width: 100%;
        margin-left: 60px;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 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="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" 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;
}

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

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(236, 63%, 19%);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: hsl(236, 63%, 59%);
    border-radius: 2px;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: hsl(236, 63%, 34%);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(236, 63%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(236, 63%, 19%);
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 0.95rem;
    color: hsl(236, 63%, 34%);
    line-height: 1.5;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 2px solid hsl(236, 63%, 59%);
    border-radius: 50px;
    background: white;
    color: hsl(236, 63%, 19%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(236, 63%, 34%);
    box-shadow: 0 0 0 4px rgba(93, 95, 239, 0.1);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: hsl(236, 63%, 59%);
    opacity: 0.8;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, hsl(236, 63%, 59%) 0%, hsl(236, 63%, 34%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(93, 95, 239, 0.4);
}

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

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

.privacy-text {
    text-align: center;
    font-size: 0.9rem;
    color: hsl(236, 63%, 34%);
    margin-top: 20px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e9ea;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-section h5 {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(236, 63%, 59%);
}

.footer-contact p {
    margin-bottom: 8px;
    color: #e8e9ea;
}

.footer-contact a {
    color: hsl(236, 63%, 59%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice p {
    margin-bottom: 15px;
    color: #e8e9ea;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(236, 63%, 59%);
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(236, 63%, 49%);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(236, 63%, 59%);
    color: hsl(236, 63%, 59%);
}

.cookie-btn-secondary:hover {
    background: hsl(236, 63%, 59%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin-bottom: 10px;
        margin-right: 10px;
    }
}

:root {
            --primary-color: hsl(236, 63%, 34%);
            --secondary-color: hsl(236, 63%, 19%);
            --accent-color: hsl(236, 63%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .company-name {
            background: linear-gradient(45deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        
        .logo-img {
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, white, hsl(236, 63%, 59%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: hsl(236, 63%, 59%);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px 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;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list i {
    color: hsl(236, 63%, 59%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

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

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

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, hsl(236, 63%, 64%), hsl(236, 63%, 49%));
    color: white;
}

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

.btn-secondary-custom:hover {
    background: hsl(236, 63%, 59%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.faq-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    padding: 80px 0;
    color: white;
}

.faq-title {
    color: hsl(236, 63%, 59%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: rgba(255,255,255,0.8);
}

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

.accordion-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.accordion-button {
    background: transparent;
    color: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: hsl(236, 63%, 59%);
    background: rgba(255,255,255,0.1);
}

.accordion-button::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(236, 63%, 59%);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.accordion-body {
    padding: 0 30px 25px 30px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 1rem;
}

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

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

.advantages-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(236, 63%, 59%);
    border-radius: 2px;
}

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

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(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 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(236, 63%, 59%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(236, 63%, 59%), hsl(236, 63%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

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

.advantage-title {
    color: hsl(236, 63%, 19%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.advantage-description {
    color: hsl(236, 63%, 34%);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.zigzag-left {
    transform: translateX(-20px);
}

.zigzag-right {
    transform: translateX(20px);
}

@media (max-width: 768px) {
    .zigzag-left,
    .zigzag-right {
        transform: translateX(0);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 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="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" 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;
}

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

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(236, 63%, 19%);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: hsl(236, 63%, 59%);
    border-radius: 2px;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: hsl(236, 63%, 34%);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: hsl(236, 63%, 59%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(236, 63%, 19%);
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 0.95rem;
    color: hsl(236, 63%, 34%);
    line-height: 1.5;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 2px solid hsl(236, 63%, 59%);
    border-radius: 50px;
    background: white;
    color: hsl(236, 63%, 19%);
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(236, 63%, 34%);
    box-shadow: 0 0 0 4px rgba(93, 95, 239, 0.1);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: hsl(236, 63%, 59%);
    opacity: 0.8;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, hsl(236, 63%, 59%) 0%, hsl(236, 63%, 34%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(93, 95, 239, 0.4);
}

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

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

.privacy-text {
    text-align: center;
    font-size: 0.9rem;
    color: hsl(236, 63%, 34%);
    margin-top: 20px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(236, 63%, 34%) 0%, hsl(236, 63%, 19%) 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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(236, 63%, 59%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, hsl(236, 63%, 59%), transparent);
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, hsl(236, 63%, 59%), hsl(236, 63%, 34%));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

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

.timeline-content {
    width: 45%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
}

.timeline-image {
    width: 45%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.timeline-image:hover img {
    transform: scale(1.1);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: hsl(236, 63%, 59%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: hsl(236, 63%, 59%);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.highlight-text {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-bottom: 60px;
    }
    
    .timeline-content,
    .timeline-image {
        width: 100%;
        margin-left: 60px;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

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

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

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 500px 1fr;
    gap: 40px;
    align-items: start;
}

.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);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

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

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

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid hsl(236, 63%, 85%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(236, 63%, 34%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(236, 63%, 59%);
    box-shadow: 0 0 0 3px rgba(146, 122, 207, 0.2);
    transform: translateY(-2px);
}

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, hsl(236, 63%, 59%) 0%, hsl(236, 63%, 34%) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(146, 122, 207, 0.4);
}

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

.contact-info {
    color: white;
}

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

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(236, 63%, 85%);
    margin-bottom: 15px;
}

.info-text {
    color: hsl(236, 63%, 90%);
    line-height: 1.7;
    font-size: 1rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.day {
    font-weight: 600;
    color: hsl(236, 63%, 85%);
}

.time {
    color: hsl(236, 63%, 90%);
}

@media (max-width: 1200px) {
    .contact-content {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info {
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-container {
    height: 600px;
    overflow: hidden;
    position: relative;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    min-height: 200px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.testimonial-author {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

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

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

.testimonials-scroll::after {
    content: '';
    height: 600px;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 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.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(236, 63%, 59%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    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.08);
    border-color: hsl(236, 63%, 59%);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(236, 63%, 59%);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

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

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

.chart-title {
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.progress-item {
    margin-bottom: 25px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(236, 63%, 59%), hsl(236, 63%, 34%));
    border-radius: 6px;
    position: relative;
    transition: width 2s ease-in-out;
}

.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: 30px;
    margin-top: 50px;
}

.testimonial-stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.testimonial-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.services-section {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsla(236, 63%, 59%, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, hsla(236, 63%, 59%, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-subtitle {
    color: hsl(236, 63%, 59%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    border-color: hsl(236, 63%, 59%);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(236, 63%, 34%);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: block;
}

.service-card:hover .service-icon {
    color: hsl(236, 63%, 59%);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(236, 63%, 19%);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: hsl(236, 63%, 34%);
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: hsl(236, 63%, 59%);
    margin-bottom: 1rem;
}

.service-duration {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
}

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

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

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

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

footer {
    background: linear-gradient(135deg, hsl(236, 63%, 19%) 0%, hsl(236, 63%, 34%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-brand p {
    color: #e8e9ea;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-section h5 {
    color: hsl(236, 63%, 59%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section ul li a:hover {
    color: hsl(236, 63%, 59%);
}

.footer-contact p {
    margin-bottom: 8px;
    color: #e8e9ea;
}

.footer-contact a {
    color: hsl(236, 63%, 59%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice p {
    margin-bottom: 15px;
    color: #e8e9ea;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(236, 63%, 59%);
    border: none;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(236, 63%, 49%);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(236, 63%, 59%);
    color: hsl(236, 63%, 59%);
}

.cookie-btn-secondary:hover {
    background: hsl(236, 63%, 59%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .col-md-8 {
        margin-bottom: 15px;
    }
    
    .cookie-btn {
        margin-bottom: 10px;
        margin-right: 10px;
    }
}