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

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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(283, 44%, 57%);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: hsl(283, 44%, 57%);
    border-radius: 2px;
}

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

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

.content-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid hsl(283, 44%, 57%);
    backdrop-filter: blur(10px);
}

.content-block h3 {
    color: hsl(283, 44%, 57%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
}

.highlight-text {
    color: hsl(283, 44%, 57%);
    font-weight: 600;
    font-style: italic;
}

.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: hsl(283, 44%, 57%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: hsl(283, 44%, 57%);
    border-radius: 50%;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 2rem;
    }
}

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

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

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

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

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

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

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

.advantage-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.advantage-item:nth-child(1) { animation-delay: 0.1s; }
.advantage-item:nth-child(2) { animation-delay: 0.2s; }
.advantage-item:nth-child(3) { animation-delay: 0.3s; }
.advantage-item:nth-child(4) { animation-delay: 0.4s; }
.advantage-item:nth-child(5) { animation-delay: 0.5s; }
.advantage-item:nth-child(6) { animation-delay: 0.6s; }
.advantage-item:nth-child(7) { animation-delay: 0.7s; }
.advantage-item:nth-child(8) { animation-delay: 0.8s; }

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    border-color: hsl(283, 44%, 57%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(283, 44%, 57%), hsl(283, 44%, 32%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

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

.advantage-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(283, 44%, 17%);
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(283, 44%, 25%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

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

.advantage-item:nth-child(odd) .advantage-card {
    margin-right: 60px;
}

.advantage-item:nth-child(even) .advantage-card {
    margin-left: 60px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .advantage-item:nth-child(odd) .advantage-card,
    .advantage-item:nth-child(even) .advantage-card {
        margin-left: 80px;
        margin-right: 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px;
    }
}

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

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

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

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

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

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

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

.stat-icon {
    font-size: 2.5rem;
    color: hsl(283, 44%, 57%);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.stat-circle:hover .stat-icon {
    color: white;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(283, 44%, 57%);
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.stat-circle:hover .stat-label {
    color: white;
}

.stat-item {
    margin-bottom: 40px;
}

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

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

.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;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
}

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

.floating-elements::after {
    bottom: 30%;
    left: 15%;
    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(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand h4 {
    color: hsl(283, 44%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(283, 44%, 57%);
    transform: translateX(5px);
}

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

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

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(283, 44%, 57%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(283, 44%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(283, 44%, 57%);
    color: hsl(283, 44%, 57%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(283, 44%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .ms-auto {
        margin-left: 0 !important;
        text-align: center;
    }
}

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

.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-policy h1 {
    color: #2c3e50;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-policy h2 {
    color: #34495e;
    font-size: 1.8rem;
    margin: 35px 0 20px 0;
    border-left: 5px solid #3498db;
    padding-left: 20px;
    background: rgba(255,255,255,0.7);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.privacy-policy h3 {
    color: #2980b9;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

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

.privacy-policy ul {
    background: rgba(255,255,255,0.8);
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin: 20px 0;
}

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

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

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    background: rgba(255,255,255,0.9);
    padding: 15px;
    border-radius: 25px;
    margin-bottom: 30px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

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

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

.data-type-card {
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #3498db;
}

footer {
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand h4 {
    color: hsl(283, 44%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(283, 44%, 57%);
    transform: translateX(5px);
}

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

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

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(283, 44%, 57%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(283, 44%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(283, 44%, 57%);
    color: hsl(283, 44%, 57%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(283, 44%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .ms-auto {
        margin-left: 0 !important;
        text-align: center;
    }
}

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

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

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

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

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

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

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

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

.cookie-type {
    background: #ecf0f1;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

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

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

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

.consent-notice {
    background: #e8f5e8;
    border: 2px solid #27ae60;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.consent-notice h4 {
    color: #27ae60;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.control-list {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.control-list h4 {
    color: #856404;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.control-list ul {
    margin: 0;
    padding-left: 20px;
}

.control-list li {
    margin-bottom: 8px;
    color: #856404;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand h4 {
    color: hsl(283, 44%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(283, 44%, 57%);
    transform: translateX(5px);
}

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

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

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(283, 44%, 57%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(283, 44%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(283, 44%, 57%);
    color: hsl(283, 44%, 57%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(283, 44%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .ms-auto {
        margin-left: 0 !important;
        text-align: center;
    }
}

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

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

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

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

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

.section-subtitle {
    color: hsl(283, 44%, 87%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

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

.form-label {
    color: hsl(283, 44%, 32%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid hsl(283, 44%, 87%);
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    color: hsl(283, 44%, 32%);
}

.form-control:focus {
    border-color: hsl(283, 44%, 57%);
    box-shadow: 0 0 0 0.2rem rgba(157, 78, 221, 0.25);
    background: white;
}

.form-control::placeholder {
    color: hsl(283, 44%, 67%);
}

.submit-btn {
    background: linear-gradient(135deg, hsl(283, 44%, 57%) 0%, hsl(283, 44%, 32%) 100%);
    border: none;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(157, 78, 221, 0.4);
    background: linear-gradient(135deg, hsl(283, 44%, 62%) 0%, hsl(283, 44%, 37%) 100%);
}

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

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

.info-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-text {
    color: hsl(283, 44%, 87%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.hours-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.hours-list {
    color: hsl(283, 44%, 87%);
    font-size: 1rem;
    line-height: 1.8;
}

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

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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(283, 44%, 57%);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: hsl(283, 44%, 57%);
    border-radius: 2px;
}

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

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

.content-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid hsl(283, 44%, 57%);
    backdrop-filter: blur(10px);
}

.content-block h3 {
    color: hsl(283, 44%, 57%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
}

.highlight-text {
    color: hsl(283, 44%, 57%);
    font-weight: 600;
    font-style: italic;
}

.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: hsl(283, 44%, 57%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: hsl(283, 44%, 57%);
    border-radius: 50%;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 2rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand h4 {
    color: hsl(283, 44%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(283, 44%, 57%);
    transform: translateX(5px);
}

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

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

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(283, 44%, 57%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(283, 44%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(283, 44%, 57%);
    color: hsl(283, 44%, 57%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(283, 44%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .ms-auto {
        margin-left: 0 !important;
        text-align: center;
    }
}

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

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

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

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

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

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

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(283, 44%, 17%);
    margin-bottom: 15px;
}

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

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(283, 44%, 32%);
    margin-bottom: 10px;
}

.service-conditions {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.service-row {
    display: flex;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-row {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin: 0 auto 20px;
    }
    
    .service-card {
        padding: 25px;
    }
}

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

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

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

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

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

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

.benefits-list li {
    color: hsl(283, 44%, 17%);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(283, 44%, 57%);
    font-size: 1.2rem;
}

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

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(283, 44%, 80%);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    color: hsl(283, 44%, 17%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(283, 44%, 57%);
    box-shadow: 0 0 0 3px rgba(144, 80, 149, 0.2);
    background: white;
}

.form-control::placeholder {
    color: hsl(283, 44%, 60%);
    font-weight: 400;
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(45deg, hsl(283, 44%, 57%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(144, 80, 149, 0.4);
    background: linear-gradient(45deg, hsl(283, 44%, 62%) 0%, hsl(283, 44%, 37%) 100%);
}

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

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

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

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-card {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

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

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

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

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

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(283, 44%, 57%), hsl(283, 44%, 32%));
}

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

.quote-icon {
    font-size: 3rem;
    color: hsl(283, 44%, 57%);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    right: 20px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: hsl(283, 44%, 25%);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.client-info {
    border-top: 2px solid hsl(283, 44%, 90%);
    padding-top: 15px;
}

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

.client-location {
    color: hsl(283, 44%, 50%);
    font-size: 0.9rem;
    font-weight: 500;
}

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

footer {
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand h4 {
    color: hsl(283, 44%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(283, 44%, 57%);
    transform: translateX(5px);
}

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

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

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(283, 44%, 57%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(283, 44%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(283, 44%, 57%);
    color: hsl(283, 44%, 57%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(283, 44%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .ms-auto {
        margin-left: 0 !important;
        text-align: center;
    }
}

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

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

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

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

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

.important-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
}

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

.terms-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

footer {
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand h4 {
    color: hsl(283, 44%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(283, 44%, 57%);
    transform: translateX(5px);
}

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

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

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(283, 44%, 57%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(283, 44%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(283, 44%, 57%);
    color: hsl(283, 44%, 57%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(283, 44%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .ms-auto {
        margin-left: 0 !important;
        text-align: center;
    }
}

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

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

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

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

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

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

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

.faq-tab {
    background: transparent;
    border: 2px solid hsl(283, 44%, 57%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-tab:hover,
.faq-tab.active {
    background: hsl(283, 44%, 57%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.faq-content {
    display: none;
}

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

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

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

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: hsl(283, 44%, 57%);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0,0,0,0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 25px 30px;
    line-height: 1.7;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question,
    .faq-answer-content {
        padding: 20px;
    }
    
    .faq-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .faq-tab {
        flex-shrink: 0;
    }
}

.faq-section {
            padding-top: 100px;
        }
        
        .faq-tabs button {
            background: none;
            outline: none;
        }
        
        .faq-question {
            user-select: none;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }

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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(283, 44%, 57%);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: hsl(283, 44%, 57%);
    border-radius: 2px;
}

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

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

.content-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid hsl(283, 44%, 57%);
    backdrop-filter: blur(10px);
}

.content-block h3 {
    color: hsl(283, 44%, 57%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
}

.highlight-text {
    color: hsl(283, 44%, 57%);
    font-weight: 600;
    font-style: italic;
}

.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: hsl(283, 44%, 57%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: hsl(283, 44%, 57%);
    border-radius: 50%;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 2rem;
    }
}

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

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

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

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

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

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

.benefits-list li {
    color: hsl(283, 44%, 17%);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(283, 44%, 57%);
    font-size: 1.2rem;
}

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

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(283, 44%, 80%);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    color: hsl(283, 44%, 17%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(283, 44%, 57%);
    box-shadow: 0 0 0 3px rgba(144, 80, 149, 0.2);
    background: white;
}

.form-control::placeholder {
    color: hsl(283, 44%, 60%);
    font-weight: 400;
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(45deg, hsl(283, 44%, 57%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(144, 80, 149, 0.4);
    background: linear-gradient(45deg, hsl(283, 44%, 62%) 0%, hsl(283, 44%, 37%) 100%);
}

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

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

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

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-card {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand h4 {
    color: hsl(283, 44%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(283, 44%, 57%);
    transform: translateX(5px);
}

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

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

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(283, 44%, 57%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(283, 44%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(283, 44%, 57%);
    color: hsl(283, 44%, 57%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(283, 44%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .ms-auto {
        margin-left: 0 !important;
        text-align: center;
    }
}

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

.hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.hero-image {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 50%;
    height: 70%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.hero-text {
    max-width: 600px;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, white, hsl(283, 44%, 57%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: hsl(283, 44%, 57%);
    margin-bottom: 2rem;
    font-weight: 300;
}

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

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

.benefits-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 2rem;
}

.benefits-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: hsl(283, 44%, 57%);
    font-size: 1.2rem;
}

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

.btn-primary-custom {
    background: hsl(283, 44%, 57%);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white;
}

.btn-primary-custom:hover {
    background: hsl(283, 44%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

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

.btn-secondary-custom:hover {
    background: hsl(283, 44%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-image {
        position: static;
        width: 100%;
        height: 300px;
        margin: 2rem 0;
        transform: none;
        right: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}

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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(283, 44%, 57%);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: hsl(283, 44%, 57%);
    border-radius: 2px;
}

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

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

.content-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid hsl(283, 44%, 57%);
    backdrop-filter: blur(10px);
}

.content-block h3 {
    color: hsl(283, 44%, 57%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
}

.highlight-text {
    color: hsl(283, 44%, 57%);
    font-weight: 600;
    font-style: italic;
}

.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: hsl(283, 44%, 57%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: hsl(283, 44%, 57%);
    border-radius: 50%;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 2rem;
    }
}

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

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

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

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

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

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

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

.advantage-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.advantage-item:nth-child(1) { animation-delay: 0.1s; }
.advantage-item:nth-child(2) { animation-delay: 0.2s; }
.advantage-item:nth-child(3) { animation-delay: 0.3s; }
.advantage-item:nth-child(4) { animation-delay: 0.4s; }
.advantage-item:nth-child(5) { animation-delay: 0.5s; }
.advantage-item:nth-child(6) { animation-delay: 0.6s; }
.advantage-item:nth-child(7) { animation-delay: 0.7s; }
.advantage-item:nth-child(8) { animation-delay: 0.8s; }

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    border-color: hsl(283, 44%, 57%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(283, 44%, 57%), hsl(283, 44%, 32%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

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

.advantage-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(283, 44%, 17%);
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(283, 44%, 25%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

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

.advantage-item:nth-child(odd) .advantage-card {
    margin-right: 60px;
}

.advantage-item:nth-child(even) .advantage-card {
    margin-left: 60px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .advantage-item:nth-child(odd) .advantage-card,
    .advantage-item:nth-child(even) .advantage-card {
        margin-left: 80px;
        margin-right: 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 30px;
    }
}

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

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

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

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

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

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

.faq-tab {
    background: transparent;
    border: 2px solid hsl(283, 44%, 57%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-tab:hover,
.faq-tab.active {
    background: hsl(283, 44%, 57%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.faq-content {
    display: none;
}

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

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

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

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: hsl(283, 44%, 57%);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0,0,0,0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 25px 30px;
    line-height: 1.7;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question,
    .faq-answer-content {
        padding: 20px;
    }
    
    .faq-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .faq-tab {
        flex-shrink: 0;
    }
}

.faq-section {
            padding-top: 100px;
        }
        
        .faq-tabs button {
            background: none;
            outline: none;
        }
        
        .faq-question {
            user-select: none;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }

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

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

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

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

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

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

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

.stat-icon {
    font-size: 2.5rem;
    color: hsl(283, 44%, 57%);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.stat-circle:hover .stat-icon {
    color: white;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(283, 44%, 57%);
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.stat-circle:hover .stat-label {
    color: white;
}

.stat-item {
    margin-bottom: 40px;
}

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

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

.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;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(283, 44%, 17%);
    margin-bottom: 15px;
}

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

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(283, 44%, 32%);
    margin-bottom: 10px;
}

.service-conditions {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.service-row {
    display: flex;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-row {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin: 0 auto 20px;
    }
    
    .service-card {
        padding: 25px;
    }
}

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

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

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

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

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(283, 44%, 57%), hsl(283, 44%, 32%));
}

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

.quote-icon {
    font-size: 3rem;
    color: hsl(283, 44%, 57%);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    right: 20px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: hsl(283, 44%, 25%);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.client-info {
    border-top: 2px solid hsl(283, 44%, 90%);
    padding-top: 15px;
}

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

.client-location {
    color: hsl(283, 44%, 50%);
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

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

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

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

.section-subtitle {
    color: hsl(283, 44%, 87%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

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

.form-label {
    color: hsl(283, 44%, 32%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid hsl(283, 44%, 87%);
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    color: hsl(283, 44%, 32%);
}

.form-control:focus {
    border-color: hsl(283, 44%, 57%);
    box-shadow: 0 0 0 0.2rem rgba(157, 78, 221, 0.25);
    background: white;
}

.form-control::placeholder {
    color: hsl(283, 44%, 67%);
}

.submit-btn {
    background: linear-gradient(135deg, hsl(283, 44%, 57%) 0%, hsl(283, 44%, 32%) 100%);
    border: none;
    color: white;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(157, 78, 221, 0.4);
    background: linear-gradient(135deg, hsl(283, 44%, 62%) 0%, hsl(283, 44%, 37%) 100%);
}

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

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

.info-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-text {
    color: hsl(283, 44%, 87%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.hours-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.hours-list {
    color: hsl(283, 44%, 87%);
    font-size: 1rem;
    line-height: 1.8;
}

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

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

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

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

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

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

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

.benefits-list li {
    color: hsl(283, 44%, 17%);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(283, 44%, 57%);
    font-size: 1.2rem;
}

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

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(283, 44%, 80%);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    color: hsl(283, 44%, 17%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(283, 44%, 57%);
    box-shadow: 0 0 0 3px rgba(144, 80, 149, 0.2);
    background: white;
}

.form-control::placeholder {
    color: hsl(283, 44%, 60%);
    font-weight: 400;
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(45deg, hsl(283, 44%, 57%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(144, 80, 149, 0.4);
    background: linear-gradient(45deg, hsl(283, 44%, 62%) 0%, hsl(283, 44%, 37%) 100%);
}

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

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

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

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-card {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand h4 {
    color: hsl(283, 44%, 57%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: hsl(283, 44%, 57%);
    transform: translateX(5px);
}

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

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

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 44%, 17%) 0%, hsl(283, 44%, 32%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice .btn-accept {
    background: hsl(283, 44%, 57%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(283, 44%, 47%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(283, 44%, 57%);
    color: hsl(283, 44%, 57%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(283, 44%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-notice .ms-auto {
        margin-left: 0 !important;
        text-align: center;
    }
}