:root {
            --primary-color: hsl(286, 69%, 49%);
            --secondary-color: hsl(286, 69%, 34%);
            --accent-color: hsl(286, 69%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                border-radius: 15px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(286, 69%, 34%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    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(180deg, hsl(286, 69%, 49%), hsl(286, 69%, 74%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

.timeline-content {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(162, 89, 255, 0.1);
    margin: 0 60px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(162, 89, 255, 0.15);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
    border-right-color: white;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: hsl(286, 69%, 49%);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px hsl(286, 69%, 74%);
    z-index: 3;
}

.timeline-image {
    flex: 1;
    margin: 0 60px;
}

.timeline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(286, 69%, 34%);
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-box {
    background: linear-gradient(135deg, hsl(286, 69%, 74%), hsl(286, 69%, 49%));
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.highlight-box:hover::before {
    right: -30%;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-content,
    .timeline-image {
        margin: 20px 0 20px 80px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -40px;
        right: auto;
        border-left-color: transparent;
        border-right-color: white;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="hsl(286, 69%, 49%)" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

.section-subtitle {
    color: hsl(286, 69%, 49%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: hsl(286, 69%, 74%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(286, 69%, 49%), hsl(286, 69%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

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

.advantage-title {
    color: hsl(286, 69%, 34%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.zigzag-left {
    padding-right: 30px;
}

.zigzag-right {
    padding-left: 30px;
}

.zigzag-right .advantage-card {
    text-align: right;
}

.zigzag-right .advantage-icon {
    margin-left: auto;
}

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

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

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(286, 69%, 74%), transparent);
    opacity: 0.1;
}

.floating-elements::before {
    top: 10%;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::after {
    bottom: 10%;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.stats-subtitle {
    font-size: 1.3rem;
    color: hsl(286, 69%, 74%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stat-circle {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(286, 69%, 74%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(286, 69%, 74%), transparent, hsl(286, 69%, 74%));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-circle:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: hsl(286, 69%, 74%);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

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

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

.stat-label {
    font-size: 0.9rem;
    color: hsl(286, 69%, 74%);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

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

@media (max-width: 768px) {
    .stats-title {
        font-size: 2.5rem;
    }
    
    .stat-circle {
        width: 160px;
        height: 160px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .stat-circle {
        width: 140px;
        height: 140px;
    }
    
    .stat-icon {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(286, 69%, 34%) 0%, hsl(286, 69%, 49%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(286, 69%, 74%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links h6 {
    color: hsl(286, 69%, 74%);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: hsl(286, 69%, 74%);
    opacity: 1;
    padding-left: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: hsl(286, 69%, 74%);
    text-decoration: none;
    font-weight: 600;
}

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

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

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

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

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

.cookie-btn {
    background: hsl(286, 69%, 74%);
    border: none;
    color: hsl(286, 69%, 34%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(286, 69%, 74%);
    color: hsl(286, 69%, 74%);
}

.cookie-btn-secondary:hover {
    background: hsl(286, 69%, 74%);
    color: hsl(286, 69%, 34%);
}

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

:root {
            --primary-color: hsl(286, 69%, 49%);
            --secondary-color: hsl(286, 69%, 34%);
            --accent-color: hsl(286, 69%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                border-radius: 15px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

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

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

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

.privacy-header .subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-style: italic;
}

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

.section-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

.section-title::before {
    content: "▶";
    color: #e74c3c;
    margin-right: 10px;
    font-size: 1.2rem;
}

.section-content {
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}

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

.data-list {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #dee2e6;
}

.data-list ul {
    margin: 0;
    padding-left: 25px;
}

.data-list li {
    margin: 8px 0;
    color: #495057;
}

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

.right-item {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.effective-date {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #e9ecef;
    border-radius: 8px;
    font-weight: 600;
    color: #495057;
}

footer {
    background: linear-gradient(135deg, hsl(286, 69%, 34%) 0%, hsl(286, 69%, 49%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(286, 69%, 74%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links h6 {
    color: hsl(286, 69%, 74%);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: hsl(286, 69%, 74%);
    opacity: 1;
    padding-left: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: hsl(286, 69%, 74%);
    text-decoration: none;
    font-weight: 600;
}

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

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

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

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

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

.cookie-btn {
    background: hsl(286, 69%, 74%);
    border: none;
    color: hsl(286, 69%, 34%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(286, 69%, 74%);
    color: hsl(286, 69%, 74%);
}

.cookie-btn-secondary:hover {
    background: hsl(286, 69%, 74%);
    color: hsl(286, 69%, 34%);
}

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

:root {
            --primary-color: hsl(286, 69%, 49%);
            --secondary-color: hsl(286, 69%, 34%);
            --accent-color: hsl(286, 69%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                border-radius: 15px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

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

.cookies-policy h1 {
    color: #2c3e50;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #3498db, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookies-policy h2 {
    color: #34495e;
    border-left: 4px solid #3498db;
    padding-left: 20px;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.4em;
    background: rgba(255,255,255,0.7);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cookies-policy p {
    margin-bottom: 18px;
    text-align: justify;
    background: rgba(255,255,255,0.8);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.cookie-type h3 {
    margin-top: 0;
    font-size: 1.2em;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
}

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

.gdpr-highlight {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-left: 5px solid #27ae60;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.control-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.control-option {
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.control-option:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookies-policy {
        padding: 20px 15px;
    }
    
    .cookies-policy h1 {
        font-size: 2em;
    }
    
    .cookie-types {
        grid-template-columns: 1fr;
    }
}

footer {
    background: linear-gradient(135deg, hsl(286, 69%, 34%) 0%, hsl(286, 69%, 49%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(286, 69%, 74%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links h6 {
    color: hsl(286, 69%, 74%);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: hsl(286, 69%, 74%);
    opacity: 1;
    padding-left: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: hsl(286, 69%, 74%);
    text-decoration: none;
    font-weight: 600;
}

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

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

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

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

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

.cookie-btn {
    background: hsl(286, 69%, 74%);
    border: none;
    color: hsl(286, 69%, 34%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(286, 69%, 74%);
    color: hsl(286, 69%, 74%);
}

.cookie-btn-secondary:hover {
    background: hsl(286, 69%, 74%);
    color: hsl(286, 69%, 34%);
}

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

:root {
            --primary-color: hsl(286, 69%, 49%);
            --secondary-color: hsl(286, 69%, 34%);
            --accent-color: hsl(286, 69%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                border-radius: 15px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

.contact-section {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.contact-subtitle {
    color: hsl(286, 69%, 74%);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

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

.form-label {
    color: hsl(286, 69%, 34%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid hsl(286, 69%, 74%);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    color: hsl(286, 69%, 34%);
}

.form-control:focus {
    border-color: hsl(286, 69%, 49%);
    box-shadow: 0 0 0 0.2rem rgba(183, 58, 168, 0.25);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: hsl(286, 69%, 60%);
    opacity: 0.7;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(286, 69%, 49%), hsl(286, 69%, 34%));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(183, 58, 168, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(183, 58, 168, 0.4);
    background: linear-gradient(45deg, hsl(286, 69%, 54%), hsl(286, 69%, 39%));
}

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

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

.info-title {
    color: hsl(286, 69%, 74%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-text {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid hsl(286, 69%, 74%);
}

.hours-title {
    color: hsl(286, 69%, 74%);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(286, 69%, 34%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    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(180deg, hsl(286, 69%, 49%), hsl(286, 69%, 74%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

.timeline-content {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(162, 89, 255, 0.1);
    margin: 0 60px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(162, 89, 255, 0.15);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
    border-right-color: white;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: hsl(286, 69%, 49%);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px hsl(286, 69%, 74%);
    z-index: 3;
}

.timeline-image {
    flex: 1;
    margin: 0 60px;
}

.timeline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(286, 69%, 34%);
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-box {
    background: linear-gradient(135deg, hsl(286, 69%, 74%), hsl(286, 69%, 49%));
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.highlight-box:hover::before {
    right: -30%;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-content,
    .timeline-image {
        margin: 20px 0 20px 80px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -40px;
        right: auto;
        border-left-color: transparent;
        border-right-color: white;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(286, 69%, 34%) 0%, hsl(286, 69%, 49%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(286, 69%, 74%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links h6 {
    color: hsl(286, 69%, 74%);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: hsl(286, 69%, 74%);
    opacity: 1;
    padding-left: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: hsl(286, 69%, 74%);
    text-decoration: none;
    font-weight: 600;
}

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

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

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

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

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

.cookie-btn {
    background: hsl(286, 69%, 74%);
    border: none;
    color: hsl(286, 69%, 34%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(286, 69%, 74%);
    color: hsl(286, 69%, 74%);
}

.cookie-btn-secondary:hover {
    background: hsl(286, 69%, 74%);
    color: hsl(286, 69%, 34%);
}

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

:root {
            --primary-color: hsl(286, 69%, 49%);
            --secondary-color: hsl(286, 69%, 34%);
            --accent-color: hsl(286, 69%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                border-radius: 15px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

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

.services-title {
    color: hsl(286, 69%, 34%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

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

.services-subtitle {
    color: hsl(286, 69%, 34%);
    font-size: 1.1rem;
    margin-bottom: 60px;
    opacity: 0.8;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s 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(286, 69%, 74%, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(286, 69%, 49%, 0.2);
    border-color: hsl(286, 69%, 74%);
}

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

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

.service-icon i {
    font-size: 30px;
    color: white;
}

.service-title {
    color: hsl(286, 69%, 34%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

.service-conditions {
    background: hsl(286, 69%, 74%, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: hsl(286, 69%, 34%);
    border-left: 3px solid hsl(286, 69%, 49%);
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="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-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-subtitle {
    color: hsl(286, 69%, 49%);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.newsletter-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

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

.benefits-list li {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

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

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 20px;
    border: 2px solid hsl(286, 69%, 74%);
    border-radius: 12px;
    font-size: 1.1rem;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(286, 69%, 49%);
    box-shadow: 0 0 0 4px rgba(182, 56, 148, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(182, 56, 148, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(182, 56, 148, 0.4);
    background: linear-gradient(135deg, hsl(286, 69%, 54%) 0%, hsl(286, 69%, 39%) 100%);
}

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

.privacy-note {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

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

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-elements::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

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

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .subscribe-btn {
        min-width: 100%;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.testimonials-subtitle {
    color: hsl(286, 69%, 74%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: hsl(286, 69%, 74%);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.quote-icon {
    font-size: 3rem;
    color: hsl(286, 69%, 49%);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.client-info {
    border-top: 2px solid hsl(286, 69%, 74%);
    padding-top: 1rem;
    position: relative;
    z-index: 2;
}

.client-name {
    font-weight: 700;
    color: hsl(286, 69%, 34%);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

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

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
}

footer {
    background: linear-gradient(135deg, hsl(286, 69%, 34%) 0%, hsl(286, 69%, 49%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(286, 69%, 74%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links h6 {
    color: hsl(286, 69%, 74%);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: hsl(286, 69%, 74%);
    opacity: 1;
    padding-left: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: hsl(286, 69%, 74%);
    text-decoration: none;
    font-weight: 600;
}

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

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

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

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

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

.cookie-btn {
    background: hsl(286, 69%, 74%);
    border: none;
    color: hsl(286, 69%, 34%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(286, 69%, 74%);
    color: hsl(286, 69%, 74%);
}

.cookie-btn-secondary:hover {
    background: hsl(286, 69%, 74%);
    color: hsl(286, 69%, 34%);
}

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

:root {
            --primary-color: hsl(286, 69%, 49%);
            --secondary-color: hsl(286, 69%, 34%);
            --accent-color: hsl(286, 69%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                border-radius: 15px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

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

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

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

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

.terms-section {
    background: white;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #e74c3c;
    transition: transform 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.section-title {
    font-size: 1.4em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

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

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

.important-notice {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #e53e3e;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(286, 69%, 34%) 0%, hsl(286, 69%, 49%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(286, 69%, 74%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links h6 {
    color: hsl(286, 69%, 74%);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: hsl(286, 69%, 74%);
    opacity: 1;
    padding-left: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: hsl(286, 69%, 74%);
    text-decoration: none;
    font-weight: 600;
}

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

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

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

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

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

.cookie-btn {
    background: hsl(286, 69%, 74%);
    border: none;
    color: hsl(286, 69%, 34%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(286, 69%, 74%);
    color: hsl(286, 69%, 74%);
}

.cookie-btn-secondary:hover {
    background: hsl(286, 69%, 74%);
    color: hsl(286, 69%, 34%);
}

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

:root {
            --primary-color: hsl(286, 69%, 49%);
            --secondary-color: hsl(286, 69%, 34%);
            --accent-color: hsl(286, 69%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                border-radius: 15px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

.faq-section {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.faq-subtitle {
    color: hsl(286, 69%, 74%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.accordion-button {
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(286, 69%, 34%);
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(286, 69%, 74%) 0%, hsl(286, 69%, 49%) 100%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(186, 85, 211, 0.25);
    border-color: transparent;
}

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

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

.accordion-collapse {
    border-radius: 0 0 15px 15px;
}

.accordion-body {
    padding: 0 2rem 2rem 2rem;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight {
    color: hsl(286, 69%, 49%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .accordion-button {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .accordion-body {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 1rem;
    }
}

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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(286, 69%, 34%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    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(180deg, hsl(286, 69%, 49%), hsl(286, 69%, 74%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

.timeline-content {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(162, 89, 255, 0.1);
    margin: 0 60px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(162, 89, 255, 0.15);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
    border-right-color: white;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: hsl(286, 69%, 49%);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px hsl(286, 69%, 74%);
    z-index: 3;
}

.timeline-image {
    flex: 1;
    margin: 0 60px;
}

.timeline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(286, 69%, 34%);
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-box {
    background: linear-gradient(135deg, hsl(286, 69%, 74%), hsl(286, 69%, 49%));
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.highlight-box:hover::before {
    right: -30%;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-content,
    .timeline-image {
        margin: 20px 0 20px 80px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -40px;
        right: auto;
        border-left-color: transparent;
        border-right-color: white;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="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-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-subtitle {
    color: hsl(286, 69%, 49%);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.newsletter-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

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

.benefits-list li {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

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

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 20px;
    border: 2px solid hsl(286, 69%, 74%);
    border-radius: 12px;
    font-size: 1.1rem;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(286, 69%, 49%);
    box-shadow: 0 0 0 4px rgba(182, 56, 148, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(182, 56, 148, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(182, 56, 148, 0.4);
    background: linear-gradient(135deg, hsl(286, 69%, 54%) 0%, hsl(286, 69%, 39%) 100%);
}

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

.privacy-note {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

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

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-elements::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

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

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .subscribe-btn {
        min-width: 100%;
    }
}

footer {
    background: linear-gradient(135deg, hsl(286, 69%, 34%) 0%, hsl(286, 69%, 49%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(286, 69%, 74%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links h6 {
    color: hsl(286, 69%, 74%);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: hsl(286, 69%, 74%);
    opacity: 1;
    padding-left: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: hsl(286, 69%, 74%);
    text-decoration: none;
    font-weight: 600;
}

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

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

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

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

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

.cookie-btn {
    background: hsl(286, 69%, 74%);
    border: none;
    color: hsl(286, 69%, 34%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(286, 69%, 74%);
    color: hsl(286, 69%, 74%);
}

.cookie-btn-secondary:hover {
    background: hsl(286, 69%, 74%);
    color: hsl(286, 69%, 34%);
}

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

:root {
            --primary-color: hsl(286, 69%, 49%);
            --secondary-color: hsl(286, 69%, 34%);
            --accent-color: hsl(286, 69%, 74%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 12px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                border-radius: 15px;
                margin-top: 15px;
                padding: 20px;
                backdrop-filter: blur(10px);
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(-15deg);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    margin-top: -60px;
}

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

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(286, 69%, 74%);
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 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: 2.5rem;
    text-align: justify;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    shape-outside: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
    float: right;
    margin-left: -100px;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
}

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

.advantages-list li {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.advantages-list li::before {
    content: '\f058';
    font-family: 'Bootstrap Icons';
    position: absolute;
    left: 0;
    color: hsl(286, 69%, 74%);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-primary-custom {
    background: linear-gradient(45deg, hsl(286, 69%, 74%), hsl(286, 69%, 49%));
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(286, 69%, 79%), hsl(286, 69%, 54%));
    color: white;
}

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

.btn-secondary-custom:hover {
    background: hsl(286, 69%, 74%);
    color: hsl(286, 69%, 34%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 5%;
    animation-delay: 4s;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-image {
        margin-left: 0;
        float: none;
        shape-outside: none;
        clip-path: none;
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.testimonials-subtitle {
    color: hsl(286, 69%, 74%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: hsl(286, 69%, 74%);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.quote-icon {
    font-size: 3rem;
    color: hsl(286, 69%, 49%);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.client-info {
    border-top: 2px solid hsl(286, 69%, 74%);
    padding-top: 1rem;
    position: relative;
    z-index: 2;
}

.client-name {
    font-weight: 700;
    color: hsl(286, 69%, 34%);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

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

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
}

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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(286, 69%, 34%);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

.section-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    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(180deg, hsl(286, 69%, 49%), hsl(286, 69%, 74%));
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

.timeline-content {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(162, 89, 255, 0.1);
    margin: 0 60px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(162, 89, 255, 0.15);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
    border-right-color: white;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: hsl(286, 69%, 49%);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px hsl(286, 69%, 74%);
    z-index: 3;
}

.timeline-image {
    flex: 1;
    margin: 0 60px;
}

.timeline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(286, 69%, 34%);
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 25px;
}

.highlight-box {
    background: linear-gradient(135deg, hsl(286, 69%, 74%), hsl(286, 69%, 49%));
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.highlight-box:hover::before {
    right: -30%;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-content,
    .timeline-image {
        margin: 20px 0 20px 80px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -40px;
        right: auto;
        border-left-color: transparent;
        border-right-color: white;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="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-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-subtitle {
    color: hsl(286, 69%, 49%);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.newsletter-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

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

.benefits-list li {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

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

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 20px;
    border: 2px solid hsl(286, 69%, 74%);
    border-radius: 12px;
    font-size: 1.1rem;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(286, 69%, 49%);
    box-shadow: 0 0 0 4px rgba(182, 56, 148, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(182, 56, 148, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(182, 56, 148, 0.4);
    background: linear-gradient(135deg, hsl(286, 69%, 54%) 0%, hsl(286, 69%, 39%) 100%);
}

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

.privacy-note {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

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

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-elements::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

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

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .subscribe-btn {
        min-width: 100%;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.contact-subtitle {
    color: hsl(286, 69%, 74%);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

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

.form-label {
    color: hsl(286, 69%, 34%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid hsl(286, 69%, 74%);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    color: hsl(286, 69%, 34%);
}

.form-control:focus {
    border-color: hsl(286, 69%, 49%);
    box-shadow: 0 0 0 0.2rem rgba(183, 58, 168, 0.25);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: hsl(286, 69%, 60%);
    opacity: 0.7;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(286, 69%, 49%), hsl(286, 69%, 34%));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(183, 58, 168, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(183, 58, 168, 0.4);
    background: linear-gradient(45deg, hsl(286, 69%, 54%), hsl(286, 69%, 39%));
}

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

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

.info-title {
    color: hsl(286, 69%, 74%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-text {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid hsl(286, 69%, 74%);
}

.hours-title {
    color: hsl(286, 69%, 74%);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

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

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

.services-title {
    color: hsl(286, 69%, 34%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

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

.services-subtitle {
    color: hsl(286, 69%, 34%);
    font-size: 1.1rem;
    margin-bottom: 60px;
    opacity: 0.8;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s 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(286, 69%, 74%, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(286, 69%, 49%, 0.2);
    border-color: hsl(286, 69%, 74%);
}

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

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

.service-icon i {
    font-size: 30px;
    color: white;
}

.service-title {
    color: hsl(286, 69%, 34%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

.service-conditions {
    background: hsl(286, 69%, 74%, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: hsl(286, 69%, 34%);
    border-left: 3px solid hsl(286, 69%, 49%);
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.stats-subtitle {
    font-size: 1.3rem;
    color: hsl(286, 69%, 74%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stat-circle {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(286, 69%, 74%);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(286, 69%, 74%), transparent, hsl(286, 69%, 74%));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-circle:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: hsl(286, 69%, 74%);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

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

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

.stat-label {
    font-size: 0.9rem;
    color: hsl(286, 69%, 74%);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

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

@media (max-width: 768px) {
    .stats-title {
        font-size: 2.5rem;
    }
    
    .stat-circle {
        width: 160px;
        height: 160px;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .stat-circle {
        width: 140px;
        height: 140px;
    }
    
    .stat-icon {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(286, 69%, 49%) 0%, hsl(286, 69%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.faq-subtitle {
    color: hsl(286, 69%, 74%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.accordion-button {
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(286, 69%, 34%);
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(286, 69%, 74%) 0%, hsl(286, 69%, 49%) 100%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(186, 85, 211, 0.25);
    border-color: transparent;
}

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

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

.accordion-collapse {
    border-radius: 0 0 15px 15px;
}

.accordion-body {
    padding: 0 2rem 2rem 2rem;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight {
    color: hsl(286, 69%, 49%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .accordion-button {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .accordion-body {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 1rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="hsl(286, 69%, 49%)" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

.section-subtitle {
    color: hsl(286, 69%, 49%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: hsl(286, 69%, 74%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(286, 69%, 49%), hsl(286, 69%, 34%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

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

.advantage-title {
    color: hsl(286, 69%, 34%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.zigzag-left {
    padding-right: 30px;
}

.zigzag-right {
    padding-left: 30px;
}

.zigzag-right .advantage-card {
    text-align: right;
}

.zigzag-right .advantage-icon {
    margin-left: auto;
}

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

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

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(286, 69%, 74%), transparent);
    opacity: 0.1;
}

.floating-elements::before {
    top: 10%;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::after {
    bottom: 10%;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

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

footer {
    background: linear-gradient(135deg, hsl(286, 69%, 34%) 0%, hsl(286, 69%, 49%) 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer-brand h4 {
    color: hsl(286, 69%, 74%);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links h6 {
    color: hsl(286, 69%, 74%);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: hsl(286, 69%, 74%);
    opacity: 1;
    padding-left: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: hsl(286, 69%, 74%);
    text-decoration: none;
    font-weight: 600;
}

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

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

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

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

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

.cookie-btn {
    background: hsl(286, 69%, 74%);
    border: none;
    color: hsl(286, 69%, 34%);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(286, 69%, 74%);
    color: hsl(286, 69%, 74%);
}

.cookie-btn-secondary:hover {
    background: hsl(286, 69%, 74%);
    color: hsl(286, 69%, 34%);
}

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