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

.about-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 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="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.05)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(216, 65%, 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(216, 65%, 60%), hsl(216, 65%, 35%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

.timeline-content {
    flex: 1;
    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);
    margin: 0 60px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(216, 65%, 60%);
    border-radius: 50%;
    transform: translateY(-50%);
    border: 4px solid white;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -70px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -70px;
}

.timeline-image {
    flex: 0 0 300px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

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

.timeline-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(216, 65%, 35%) 0%, transparent 50%);
    opacity: 0.7;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: hsl(216, 65%, 60%);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.highlight-text {
    color: hsl(216, 65%, 60%);
    font-weight: 600;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    color: hsl(216, 65%, 60%);
    margin-bottom: 20px;
}

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

.value-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.advantages-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 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="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><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.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    color: hsl(216, 65%, 80%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

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

.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(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(216, 65%, 60%), hsl(216, 65%, 35%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.advantage-title {
    color: hsl(216, 65%, 20%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.advantage-description {
    color: hsl(216, 20%, 40%);
    font-size: 1rem;
    line-height: 1.6;
}

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

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

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

.statistics-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 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="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(216, 65%, 80%);
    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.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.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.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-icon {
    font-size: 3.5rem;
    color: hsl(216, 65%, 60%);
    margin-bottom: 25px;
    display: block;
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(216, 65%, 80%);
    font-weight: 500;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.95rem;
    color: hsl(216, 65%, 70%);
    line-height: 1.5;
}

.graph-section {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 50px 40px;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

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

.progress-percentage {
    font-size: 1rem;
    font-weight: 700;
    color: hsl(216, 65%, 60%);
}

.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(216, 65%, 60%), hsl(216, 65%, 45%));
    border-radius: 6px;
    transition: width 2s ease;
    position: relative;
}

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

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

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

.highlight-card {
    background: linear-gradient(145deg, hsl(216, 65%, 60%), hsl(216, 65%, 45%));
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: scale(1.05);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.highlight-text {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

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

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

.footer-brand h3 {
    color: hsl(216, 65%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: hsl(216, 65%, 60%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(216, 65%, 60%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice .btn-accept {
    background: hsl(216, 65%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(216, 65%, 35%);
    transform: translateY(-2px);
}

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

.cookie-notice .btn-learn:hover {
    background: hsl(216, 65%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

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

.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;
    margin: 0;
}

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

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

.section-title:first-of-type {
    margin-top: 0;
}

.privacy-content p {
    margin-bottom: 20px;
    text-align: justify;
}

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

.privacy-list li {
    background: #ecf0f1;
    margin: 10px 0;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.privacy-list li:hover {
    background: #d5dbdb;
    transform: translateX(5px);
}

.privacy-list li strong {
    color: #2c3e50;
}

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

.highlight-box h3 {
    margin-top: 0;
    font-size: 1.4em;
}

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

.data-type-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.data-type-card:hover {
    background: #e3f2fd;
    border-color: #3498db;
    transform: translateY(-3px);
}

.data-type-card h4 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
}

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

.right-item {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    padding: 20px;
    border-radius: 10px;
    color: #2c3e50;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.right-item h4 {
    margin-top: 0;
    font-weight: 600;
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #34495e;
    color: white;
    border-radius: 10px;
    font-weight: 500;
}

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

.footer-brand h3 {
    color: hsl(216, 65%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: hsl(216, 65%, 60%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(216, 65%, 60%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice .btn-accept {
    background: hsl(216, 65%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(216, 65%, 35%);
    transform: translateY(-2px);
}

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

.cookie-notice .btn-learn:hover {
    background: hsl(216, 65%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

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

.cookies-policy h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookies-policy h2 {
    color: #34495e;
    font-size: 1.6em;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
    font-weight: 600;
}

.cookies-policy h3 {
    color: #5a6c7d;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.cookies-policy p {
    margin-bottom: 18px;
    text-align: justify;
    color: #444;
    font-size: 1.05em;
}

.cookies-policy ul {
    margin: 20px 0;
    padding-left: 30px;
}

.cookies-policy li {
    margin-bottom: 12px;
    color: #555;
    font-size: 1.02em;
}

.cookie-type {
    background: #fff;
    border-left: 5px solid #667eea;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cookie-type h4 {
    color: #667eea;
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea20, #764ba220);
    border: 2px solid #667eea;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
}

.highlight-box::before {
    content: "⚠️";
    position: absolute;
    top: -10px;
    left: 20px;
    background: #667eea;
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 1.2em;
}

.consent-info {
    background: #e8f5e8;
    border-left: 5px solid #28a745;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

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

.footer-brand h3 {
    color: hsl(216, 65%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: hsl(216, 65%, 60%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(216, 65%, 60%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice .btn-accept {
    background: hsl(216, 65%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(216, 65%, 35%);
    transform: translateY(-2px);
}

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

.cookie-notice .btn-learn:hover {
    background: hsl(216, 65%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

.contact-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 100%);
    padding: 80px 0;
    color: white;
}

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

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    color: hsl(216, 65%, 20%);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    background: white;
    border-color: hsl(216, 65%, 60%);
    box-shadow: 0 0 0 0.2rem rgba(82, 124, 188, 0.25);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: hsl(216, 65%, 35%);
    opacity: 0.7;
}

.contact-form label {
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(216, 65%, 60%), hsl(216, 65%, 50%));
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(82, 124, 188, 0.4);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(82, 124, 188, 0.6);
    background: linear-gradient(45deg, hsl(216, 65%, 70%), hsl(216, 65%, 60%));
}

.contact-info {
    padding-left: 40px;
}

.contact-info h3 {
    color: hsl(216, 65%, 60%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid hsl(216, 65%, 60%);
}

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

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

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

.working-hours h4 {
    color: hsl(216, 65%, 60%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.working-hours p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 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="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.05)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(216, 65%, 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(216, 65%, 60%), hsl(216, 65%, 35%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

.timeline-content {
    flex: 1;
    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);
    margin: 0 60px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(216, 65%, 60%);
    border-radius: 50%;
    transform: translateY(-50%);
    border: 4px solid white;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -70px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -70px;
}

.timeline-image {
    flex: 0 0 300px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

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

.timeline-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(216, 65%, 35%) 0%, transparent 50%);
    opacity: 0.7;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: hsl(216, 65%, 60%);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.highlight-text {
    color: hsl(216, 65%, 60%);
    font-weight: 600;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    color: hsl(216, 65%, 60%);
    margin-bottom: 20px;
}

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

.value-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-brand h3 {
    color: hsl(216, 65%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: hsl(216, 65%, 60%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(216, 65%, 60%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice .btn-accept {
    background: hsl(216, 65%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(216, 65%, 35%);
    transform: translateY(-2px);
}

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

.cookie-notice .btn-learn:hover {
    background: hsl(216, 65%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

.services-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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>');
    opacity: 0.3;
}

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

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

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

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

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

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

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

.service-icon {
    font-size: 3rem;
    color: hsl(216, 65%, 35%);
    margin-right: 25px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    color: hsl(216, 65%, 60%);
    transform: scale(1.1);
}

.service-content h4 {
    color: hsl(216, 65%, 20%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.service-conditions {
    background: hsl(216, 65%, 95%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(216, 65%, 60%);
}

.service-conditions small {
    color: hsl(216, 65%, 30%);
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-subtitle {
    color: hsl(216, 65%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

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

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: hsl(216, 65%, 20%);
}

.form-control:focus {
    background: white;
    border-color: hsl(216, 65%, 60%);
    box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(216, 65%, 40%);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(216, 65%, 60%), hsl(216, 65%, 50%));
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(65, 105, 225, 0.3);
    width: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(65, 105, 225, 0.4);
    background: linear-gradient(45deg, hsl(216, 65%, 55%), hsl(216, 65%, 45%));
}

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

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

.benefits-list li {
    color: hsl(216, 65%, 85%);
    margin-bottom: 0.8rem;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

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

.privacy-note {
    color: hsl(216, 65%, 70%);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-control {
        padding: 12px 15px;
    }
    
    .subscribe-btn {
        padding: 12px 30px;
    }
}

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

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

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

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

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

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

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

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

.testimonial-text {
    color: hsl(216, 65%, 25%);
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: hsl(216, 65%, 60%);
    font-family: serif;
    line-height: 0;
    margin-right: 5px;
    vertical-align: -20px;
}

.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: hsl(216, 65%, 60%);
    font-family: serif;
    line-height: 0;
    margin-left: 5px;
    vertical-align: -20px;
}

.client-info {
    border-top: 2px solid hsl(216, 65%, 90%);
    padding-top: 20px;
}

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

.client-location {
    color: hsl(216, 65%, 50%);
    font-size: 0.95rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: hsl(216, 65%, 60%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: hsl(216, 65%, 50%);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

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

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

.carousel-indicators .active {
    background-color: hsl(216, 65%, 60%);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 30px 20px;
        height: auto;
        min-height: 300px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: -15px;
    }
    
    .carousel-control-next {
        right: -15px;
    }
}

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

.footer-brand h3 {
    color: hsl(216, 65%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: hsl(216, 65%, 60%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(216, 65%, 60%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice .btn-accept {
    background: hsl(216, 65%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(216, 65%, 35%);
    transform: translateY(-2px);
}

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

.cookie-notice .btn-learn:hover {
    background: hsl(216, 65%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

.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, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.terms-title {
    text-align: center;
    font-size: 2.5em;
    color: #1a252f;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

.section-title {
    font-size: 1.4em;
    color: #2980b9;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 8px;
}

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

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

.important-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 1px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    font-weight: 500;
    color: #856404;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1.1em;
}

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

.footer-brand h3 {
    color: hsl(216, 65%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: hsl(216, 65%, 60%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(216, 65%, 60%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice .btn-accept {
    background: hsl(216, 65%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(216, 65%, 35%);
    transform: translateY(-2px);
}

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

.cookie-notice .btn-learn:hover {
    background: hsl(216, 65%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

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

.faq-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(hsl(216, 65%, 35%), 0.1);
}

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

.faq-question {
    background: hsl(216, 65%, 35%);
    color: white;
    padding: 25px 30px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 3px solid hsl(216, 65%, 60%);
}

.faq-answer {
    padding: 30px;
    color: hsl(216, 65%, 20%);
    line-height: 1.7;
    font-size: 1rem;
}

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

.section-subtitle {
    color: hsl(216, 65%, 35%);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-weight: 400;
}

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

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 20px;
        font-size: 0.95rem;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 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="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.05)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(216, 65%, 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(216, 65%, 60%), hsl(216, 65%, 35%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

.timeline-content {
    flex: 1;
    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);
    margin: 0 60px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(216, 65%, 60%);
    border-radius: 50%;
    transform: translateY(-50%);
    border: 4px solid white;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -70px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -70px;
}

.timeline-image {
    flex: 0 0 300px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

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

.timeline-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(216, 65%, 35%) 0%, transparent 50%);
    opacity: 0.7;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: hsl(216, 65%, 60%);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.highlight-text {
    color: hsl(216, 65%, 60%);
    font-weight: 600;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    color: hsl(216, 65%, 60%);
    margin-bottom: 20px;
}

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

.value-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-subtitle {
    color: hsl(216, 65%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

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

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: hsl(216, 65%, 20%);
}

.form-control:focus {
    background: white;
    border-color: hsl(216, 65%, 60%);
    box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(216, 65%, 40%);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(216, 65%, 60%), hsl(216, 65%, 50%));
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(65, 105, 225, 0.3);
    width: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(65, 105, 225, 0.4);
    background: linear-gradient(45deg, hsl(216, 65%, 55%), hsl(216, 65%, 45%));
}

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

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

.benefits-list li {
    color: hsl(216, 65%, 85%);
    margin-bottom: 0.8rem;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

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

.privacy-note {
    color: hsl(216, 65%, 70%);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-control {
        padding: 12px 15px;
    }
    
    .subscribe-btn {
        padding: 12px 30px;
    }
}

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

.footer-brand h3 {
    color: hsl(216, 65%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: hsl(216, 65%, 60%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(216, 65%, 60%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice .btn-accept {
    background: hsl(216, 65%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(216, 65%, 35%);
    transform: translateY(-2px);
}

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

.cookie-notice .btn-learn:hover {
    background: hsl(216, 65%, 60%);
    color: white;
    transform: translateY(-2px);
}

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

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.03)"/><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.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

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

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

.hero-subtitle {
    font-size: 1.5rem;
    color: hsl(216, 65%, 60%);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

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

.hero-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.hero-benefits li {
    color: rgba(255,255,255,0.95);
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: hsl(216, 65%, 60%);
    border-radius: 50%;
    box-shadow: 0 0 10px hsl(216, 65%, 60%);
}

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

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

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

.btn-primary-custom:hover {
    background: hsl(216, 65%, 50%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

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

.btn-secondary-custom:hover {
    background: hsl(216, 65%, 60%);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        text-align: center;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 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="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.05)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(216, 65%, 60%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(216, 65%, 60%), hsl(216, 65%, 35%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

.timeline-content {
    flex: 1;
    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);
    margin: 0 60px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(216, 65%, 60%);
    border-radius: 50%;
    transform: translateY(-50%);
    border: 4px solid white;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -70px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -70px;
}

.timeline-image {
    flex: 0 0 300px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

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

.timeline-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(216, 65%, 35%) 0%, transparent 50%);
    opacity: 0.7;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: hsl(216, 65%, 60%);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.highlight-text {
    color: hsl(216, 65%, 60%);
    font-weight: 600;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    color: hsl(216, 65%, 60%);
    margin-bottom: 20px;
}

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

.value-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.faq-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(hsl(216, 65%, 35%), 0.1);
}

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

.faq-question {
    background: hsl(216, 65%, 35%);
    color: white;
    padding: 25px 30px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 3px solid hsl(216, 65%, 60%);
}

.faq-answer {
    padding: 30px;
    color: hsl(216, 65%, 20%);
    line-height: 1.7;
    font-size: 1rem;
}

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

.section-subtitle {
    color: hsl(216, 65%, 35%);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-weight: 400;
}

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

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 20px;
        font-size: 0.95rem;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 100%);
    padding: 80px 0;
    color: white;
}

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

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    color: hsl(216, 65%, 20%);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    background: white;
    border-color: hsl(216, 65%, 60%);
    box-shadow: 0 0 0 0.2rem rgba(82, 124, 188, 0.25);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: hsl(216, 65%, 35%);
    opacity: 0.7;
}

.contact-form label {
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(216, 65%, 60%), hsl(216, 65%, 50%));
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(82, 124, 188, 0.4);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(82, 124, 188, 0.6);
    background: linear-gradient(45deg, hsl(216, 65%, 70%), hsl(216, 65%, 60%));
}

.contact-info {
    padding-left: 40px;
}

.contact-info h3 {
    color: hsl(216, 65%, 60%);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid hsl(216, 65%, 60%);
}

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

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

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

.working-hours h4 {
    color: hsl(216, 65%, 60%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.working-hours p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 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="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(216, 65%, 80%);
    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.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.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.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-icon {
    font-size: 3.5rem;
    color: hsl(216, 65%, 60%);
    margin-bottom: 25px;
    display: block;
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(216, 65%, 80%);
    font-weight: 500;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.95rem;
    color: hsl(216, 65%, 70%);
    line-height: 1.5;
}

.graph-section {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 50px 40px;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

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

.progress-percentage {
    font-size: 1rem;
    font-weight: 700;
    color: hsl(216, 65%, 60%);
}

.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(216, 65%, 60%), hsl(216, 65%, 45%));
    border-radius: 6px;
    transition: width 2s ease;
    position: relative;
}

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

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

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

.highlight-card {
    background: linear-gradient(145deg, hsl(216, 65%, 60%), hsl(216, 65%, 45%));
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: scale(1.05);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.highlight-text {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

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

.advantages-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 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="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><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.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    color: hsl(216, 65%, 80%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

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

.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(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(216, 65%, 60%), hsl(216, 65%, 35%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.advantage-title {
    color: hsl(216, 65%, 20%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.advantage-description {
    color: hsl(216, 20%, 40%);
    font-size: 1rem;
    line-height: 1.6;
}

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

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-subtitle {
    color: hsl(216, 65%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

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

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: hsl(216, 65%, 20%);
}

.form-control:focus {
    background: white;
    border-color: hsl(216, 65%, 60%);
    box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(216, 65%, 40%);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(216, 65%, 60%), hsl(216, 65%, 50%));
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(65, 105, 225, 0.3);
    width: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(65, 105, 225, 0.4);
    background: linear-gradient(45deg, hsl(216, 65%, 55%), hsl(216, 65%, 45%));
}

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

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

.benefits-list li {
    color: hsl(216, 65%, 85%);
    margin-bottom: 0.8rem;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

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

.privacy-note {
    color: hsl(216, 65%, 70%);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-control {
        padding: 12px 15px;
    }
    
    .subscribe-btn {
        padding: 12px 30px;
    }
}

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

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

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

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

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

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

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

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

.testimonial-text {
    color: hsl(216, 65%, 25%);
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: hsl(216, 65%, 60%);
    font-family: serif;
    line-height: 0;
    margin-right: 5px;
    vertical-align: -20px;
}

.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: hsl(216, 65%, 60%);
    font-family: serif;
    line-height: 0;
    margin-left: 5px;
    vertical-align: -20px;
}

.client-info {
    border-top: 2px solid hsl(216, 65%, 90%);
    padding-top: 20px;
}

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

.client-location {
    color: hsl(216, 65%, 50%);
    font-size: 0.95rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: hsl(216, 65%, 60%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: hsl(216, 65%, 50%);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

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

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

.carousel-indicators .active {
    background-color: hsl(216, 65%, 60%);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 30px 20px;
        height: auto;
        min-height: 300px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: -15px;
    }
    
    .carousel-control-next {
        right: -15px;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(216, 65%, 35%) 0%, hsl(216, 65%, 20%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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>');
    opacity: 0.3;
}

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

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

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

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

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

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

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

.service-icon {
    font-size: 3rem;
    color: hsl(216, 65%, 35%);
    margin-right: 25px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    color: hsl(216, 65%, 60%);
    transform: scale(1.1);
}

.service-content h4 {
    color: hsl(216, 65%, 20%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.service-conditions {
    background: hsl(216, 65%, 95%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(216, 65%, 60%);
}

.service-conditions small {
    color: hsl(216, 65%, 30%);
    font-size: 0.9rem;
    line-height: 1.4;
}

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

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

.footer-brand h3 {
    color: hsl(216, 65%, 60%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: hsl(216, 65%, 60%);
    transform: translateX(5px);
}

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

.footer-contact a {
    color: hsl(216, 65%, 60%);
    text-decoration: none;
}

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

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

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

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

.cookie-notice .btn-accept {
    background: hsl(216, 65%, 60%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(216, 65%, 35%);
    transform: translateY(-2px);
}

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

.cookie-notice .btn-learn:hover {
    background: hsl(216, 65%, 60%);
    color: white;
    transform: translateY(-2px);
}