:root {
            --primary-color: hsl(283, 51%, 50%);
            --secondary-color: hsl(283, 51%, 35%);
            --accent-color: hsl(283, 51%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(283, 51%, 95%) 0%, hsl(283, 51%, 90%) 100%);
    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"><circle cx="50" cy="50" r="2" fill="hsl(283, 51%, 75%)" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(283, 51%, 35%);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

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

.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid hsl(283, 51%, 90%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-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.5s ease;
}

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

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

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

.about-image:hover {
    transform: scale(1.05);
}

.content-block h3 {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(283, 51%, 35%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.content-block h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(180deg, hsl(283, 51%, 50%), hsl(283, 51%, 75%));
    border-radius: 3px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(283, 51%, 25%);
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.mission-values {
    background: linear-gradient(135deg, hsl(283, 51%, 50%), hsl(283, 51%, 35%));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.mission-values h3 {
    color: white;
}

.mission-values h3::before {
    background: linear-gradient(180deg, hsl(283, 51%, 75%), white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid hsl(283, 51%, 90%);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: hsl(283, 51%, 50%);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(283, 51%, 50%), hsl(283, 51%, 75%));
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

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

.advantages-section {
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 100%);
    padding: 80px 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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

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

.section-subtitle {
    color: hsl(283, 51%, 75%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(283, 51%, 50%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(283, 51%, 35%), hsl(283, 51%, 50%));
}

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

.advantage-title {
    color: hsl(283, 51%, 35%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        margin-bottom: 20px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(283, 51%, 75%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(283, 51%, 75%);
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

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

.footer-content {
    border-bottom: 1px solid hsla(283, 51%, 75%, 0.3);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

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

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

.footer-links h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: hsl(283, 51%, 75%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(283, 51%, 75%);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 51%, 35%) 0%, hsl(283, 51%, 50%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

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

.cookie-btn-secondary {
    background: transparent;
    color: hsl(283, 51%, 75%);
    border: 2px solid hsl(283, 51%, 75%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn-secondary:hover {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand, .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice .container-fluid {
        padding: 0 15px;
    }
}

:root {
            --primary-color: hsl(283, 51%, 50%);
            --secondary-color: hsl(283, 51%, 35%);
            --accent-color: hsl(283, 51%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight-box {
    background: #ebf3fd;
    border: 1px solid #3498db;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

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

@media (max-width: 768px) {
    .privacy-policy {
        padding: 20px 10px;
    }
    
    .privacy-content {
        padding: 25px;
    }
    
    .privacy-header h1 {
        font-size: 2em;
    }
}

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

.footer-content {
    border-bottom: 1px solid hsla(283, 51%, 75%, 0.3);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

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

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

.footer-links h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: hsl(283, 51%, 75%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(283, 51%, 75%);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 51%, 35%) 0%, hsl(283, 51%, 50%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

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

.cookie-btn-secondary {
    background: transparent;
    color: hsl(283, 51%, 75%);
    border: 2px solid hsl(283, 51%, 75%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn-secondary:hover {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand, .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice .container-fluid {
        padding: 0 15px;
    }
}

:root {
            --primary-color: hsl(283, 51%, 50%);
            --secondary-color: hsl(283, 51%, 35%);
            --accent-color: hsl(283, 51%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.cookies-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #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.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.policy-subtitle {
    font-size: 1.2rem;
    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.8rem;
    color: #34495e;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    font-weight: 600;
}

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

.policy-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

.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.3rem;
    font-weight: 600;
}

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

.cookie-list li {
    padding: 12px 0;
    border-bottom: 1px solid #bdc3c7;
    position: relative;
    padding-left: 25px;
}

.cookie-list li:before {
    content: "🍪";
    position: absolute;
    left: 0;
    top: 12px;
}

.cookie-list li:last-child {
    border-bottom: none;
}

.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 h4 {
    margin-top: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

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

.warning-box {
    background: #fdf2e9;
    border: 2px solid #e67e22;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

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

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

.footer-content {
    border-bottom: 1px solid hsla(283, 51%, 75%, 0.3);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

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

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

.footer-links h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: hsl(283, 51%, 75%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(283, 51%, 75%);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 51%, 35%) 0%, hsl(283, 51%, 50%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

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

.cookie-btn-secondary {
    background: transparent;
    color: hsl(283, 51%, 75%);
    border: 2px solid hsl(283, 51%, 75%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn-secondary:hover {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand, .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice .container-fluid {
        padding: 0 15px;
    }
}

:root {
            --primary-color: hsl(283, 51%, 50%);
            --secondary-color: hsl(283, 51%, 35%);
            --accent-color: hsl(283, 51%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 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% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.contact-subtitle {
    color: hsl(283, 51%, 75%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

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

.form-label {
    color: hsl(283, 51%, 35%);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid hsl(283, 51%, 75%);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(283, 51%, 35%);
}

.form-control:focus {
    border-color: hsl(283, 51%, 50%);
    box-shadow: 0 0 0 0.2rem rgba(183, 81, 183, 0.25);
    outline: none;
}

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

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

.submit-btn {
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(183, 81, 183, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(183, 81, 183, 0.4);
    background: linear-gradient(135deg, hsl(283, 51%, 55%) 0%, hsl(283, 51%, 40%) 100%);
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
}

.info-title {
    color: hsl(283, 51%, 35%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-text {
    color: hsl(283, 51%, 40%);
    line-height: 1.7;
    font-size: 1rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: hsl(283, 51%, 75%);
    border-radius: 10px;
    color: white;
    font-weight: 500;
}

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(283, 51%, 95%) 0%, hsl(283, 51%, 90%) 100%);
    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"><circle cx="50" cy="50" r="2" fill="hsl(283, 51%, 75%)" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(283, 51%, 35%);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

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

.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid hsl(283, 51%, 90%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-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.5s ease;
}

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

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

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

.about-image:hover {
    transform: scale(1.05);
}

.content-block h3 {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(283, 51%, 35%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.content-block h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(180deg, hsl(283, 51%, 50%), hsl(283, 51%, 75%));
    border-radius: 3px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(283, 51%, 25%);
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.mission-values {
    background: linear-gradient(135deg, hsl(283, 51%, 50%), hsl(283, 51%, 35%));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.mission-values h3 {
    color: white;
}

.mission-values h3::before {
    background: linear-gradient(180deg, hsl(283, 51%, 75%), white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid hsl(283, 51%, 90%);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: hsl(283, 51%, 50%);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(283, 51%, 50%), hsl(283, 51%, 75%));
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

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

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

.footer-content {
    border-bottom: 1px solid hsla(283, 51%, 75%, 0.3);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

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

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

.footer-links h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: hsl(283, 51%, 75%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(283, 51%, 75%);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 51%, 35%) 0%, hsl(283, 51%, 50%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

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

.cookie-btn-secondary {
    background: transparent;
    color: hsl(283, 51%, 75%);
    border: 2px solid hsl(283, 51%, 75%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn-secondary:hover {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand, .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice .container-fluid {
        padding: 0 15px;
    }
}

:root {
            --primary-color: hsl(283, 51%, 50%);
            --secondary-color: hsl(283, 51%, 35%);
            --accent-color: hsl(283, 51%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

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

.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, 51%, 75%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

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

.service-icon {
    font-size: 3.5rem;
    color: hsl(283, 51%, 50%);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
    color: hsl(283, 51%, 35%);
}

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

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

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

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

.terms-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-top: 60px;
    backdrop-filter: blur(10px);
}

.terms-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.terms-list {
    color: hsl(283, 51%, 75%);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

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

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

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

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

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

.newsletter-subtitle {
    color: hsl(283, 51%, 50%);
    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, 51%, 35%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

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

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(283, 51%, 75%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: hsl(283, 51%, 35%);
}

.email-input:focus {
    border-color: hsl(283, 51%, 50%);
    box-shadow: 0 0 0 3px rgba(155, 81, 155, 0.2);
    background: white;
}

.email-input::placeholder {
    color: hsl(283, 51%, 60%);
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    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;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(155, 81, 155, 0.4);
    background: linear-gradient(135deg, hsl(283, 51%, 55%) 0%, hsl(283, 51%, 40%) 100%);
}

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

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

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

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

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

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-subtitle {
    color: hsl(283, 51%, 75%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid hsl(283, 51%, 75%);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: hsl(283, 51%, 75%);
    font-family: serif;
    opacity: 0.3;
}

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

.testimonial-text {
    color: hsl(283, 51%, 35%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

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

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

.client-location {
    color: hsl(283, 51%, 35%);
    font-size: 0.9rem;
    opacity: 0.8;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

.footer-content {
    border-bottom: 1px solid hsla(283, 51%, 75%, 0.3);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

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

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

.footer-links h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: hsl(283, 51%, 75%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(283, 51%, 75%);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 51%, 35%) 0%, hsl(283, 51%, 50%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

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

.cookie-btn-secondary {
    background: transparent;
    color: hsl(283, 51%, 75%);
    border: 2px solid hsl(283, 51%, 75%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn-secondary:hover {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand, .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice .container-fluid {
        padding: 0 15px;
    }
}

:root {
            --primary-color: hsl(283, 51%, 50%);
            --secondary-color: hsl(283, 51%, 35%);
            --accent-color: hsl(283, 51%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.terms-title {
    font-size: 2.5em;
    margin: 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.terms-subtitle {
    font-size: 1.1em;
    margin: 10px 0 0 0;
    opacity: 0.9;
}

.section-title {
    font-size: 1.4em;
    color: #6c5ce7;
    margin: 40px 0 20px 0;
    padding: 15px 0;
    border-bottom: 3px solid #ddd6fe;
    font-weight: 600;
    position: relative;
}

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

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

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

.highlight-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 25px;
    border-left: 5px solid #fdcb6e;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
}

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

.terms-list li {
    margin: 15px 0;
    padding: 15px 20px;
    background: #f8f9ff;
    border-radius: 8px;
    border-left: 4px solid #6c5ce7;
    list-style: none;
    position: relative;
}

.terms-list li::before {
    content: '✓';
    color: #6c5ce7;
    font-weight: bold;
    position: absolute;
    left: -5px;
    top: 15px;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #74b9ff;
    margin: 40px 0;
    padding: 20px;
    background: #f1f2f6;
    border-radius: 10px;
}

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

.footer-content {
    border-bottom: 1px solid hsla(283, 51%, 75%, 0.3);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

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

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

.footer-links h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: hsl(283, 51%, 75%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(283, 51%, 75%);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 51%, 35%) 0%, hsl(283, 51%, 50%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

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

.cookie-btn-secondary {
    background: transparent;
    color: hsl(283, 51%, 75%);
    border: 2px solid hsl(283, 51%, 75%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn-secondary:hover {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand, .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice .container-fluid {
        padding: 0 15px;
    }
}

:root {
            --primary-color: hsl(283, 51%, 50%);
            --secondary-color: hsl(283, 51%, 35%);
            --accent-color: hsl(283, 51%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 100%);
    padding: 80px 0;
    position: relative;
}

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

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

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

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

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(283, 51%, 75%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(283, 51%, 75%);
}

.faq-question {
    background: linear-gradient(135deg, hsl(283, 51%, 50%), hsl(283, 51%, 35%));
    color: white;
    padding: 25px 30px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.faq-question::after {
    content: '✨';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-card:hover .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 30px;
    color: hsl(283, 51%, 35%);
    font-size: 1.1rem;
    line-height: 1.8;
    border-left: 4px solid hsl(283, 51%, 75%);
    margin-left: 20px;
    margin-right: 20px;
    background: linear-gradient(to right, hsl(283, 51%, 98%), white);
}

.faq-highlight {
    color: hsl(283, 51%, 50%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 25px 20px;
        font-size: 1rem;
        margin-left: 15px;
        margin-right: 15px;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(283, 51%, 95%) 0%, hsl(283, 51%, 90%) 100%);
    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"><circle cx="50" cy="50" r="2" fill="hsl(283, 51%, 75%)" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(283, 51%, 35%);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

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

.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid hsl(283, 51%, 90%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-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.5s ease;
}

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

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

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

.about-image:hover {
    transform: scale(1.05);
}

.content-block h3 {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(283, 51%, 35%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.content-block h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(180deg, hsl(283, 51%, 50%), hsl(283, 51%, 75%));
    border-radius: 3px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(283, 51%, 25%);
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.mission-values {
    background: linear-gradient(135deg, hsl(283, 51%, 50%), hsl(283, 51%, 35%));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.mission-values h3 {
    color: white;
}

.mission-values h3::before {
    background: linear-gradient(180deg, hsl(283, 51%, 75%), white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid hsl(283, 51%, 90%);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: hsl(283, 51%, 50%);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(283, 51%, 50%), hsl(283, 51%, 75%));
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

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

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

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

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

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

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

.newsletter-subtitle {
    color: hsl(283, 51%, 50%);
    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, 51%, 35%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

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

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(283, 51%, 75%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: hsl(283, 51%, 35%);
}

.email-input:focus {
    border-color: hsl(283, 51%, 50%);
    box-shadow: 0 0 0 3px rgba(155, 81, 155, 0.2);
    background: white;
}

.email-input::placeholder {
    color: hsl(283, 51%, 60%);
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    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;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(155, 81, 155, 0.4);
    background: linear-gradient(135deg, hsl(283, 51%, 55%) 0%, hsl(283, 51%, 40%) 100%);
}

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

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

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

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

.footer-content {
    border-bottom: 1px solid hsla(283, 51%, 75%, 0.3);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

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

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

.footer-links h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: hsl(283, 51%, 75%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(283, 51%, 75%);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 51%, 35%) 0%, hsl(283, 51%, 50%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

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

.cookie-btn-secondary {
    background: transparent;
    color: hsl(283, 51%, 75%);
    border: 2px solid hsl(283, 51%, 75%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn-secondary:hover {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand, .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice .container-fluid {
        padding: 0 15px;
    }
}

:root {
            --primary-color: hsl(283, 51%, 50%);
            --secondary-color: hsl(283, 51%, 35%);
            --accent-color: hsl(283, 51%, 75%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-svg {
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

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

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(283, 51%, 75%);
    margin-bottom: 2rem;
    font-weight: 300;
}

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

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

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

.hero-benefits li::before {
    content: '\f058';
    font-family: 'Bootstrap Icons';
    position: absolute;
    left: 0;
    color: hsl(283, 51%, 75%);
    font-size: 1.2rem;
}

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

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

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

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

.btn-primary-custom:hover {
    background: white;
    color: hsl(283, 51%, 35%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.btn-secondary-custom:hover {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-image img {
        transform: none;
        margin-top: 2rem;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-elements::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, hsl(283, 51%, 75%) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

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

.faq-section {
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 100%);
    padding: 80px 0;
    position: relative;
}

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

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

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

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

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(283, 51%, 75%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(283, 51%, 75%);
}

.faq-question {
    background: linear-gradient(135deg, hsl(283, 51%, 50%), hsl(283, 51%, 35%));
    color: white;
    padding: 25px 30px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.faq-question::after {
    content: '✨';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-card:hover .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 30px;
    color: hsl(283, 51%, 35%);
    font-size: 1.1rem;
    line-height: 1.8;
    border-left: 4px solid hsl(283, 51%, 75%);
    margin-left: 20px;
    margin-right: 20px;
    background: linear-gradient(to right, hsl(283, 51%, 98%), white);
}

.faq-highlight {
    color: hsl(283, 51%, 50%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 25px 20px;
        font-size: 1rem;
        margin-left: 15px;
        margin-right: 15px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(283, 51%, 75%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(283, 51%, 75%);
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

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

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

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-subtitle {
    color: hsl(283, 51%, 75%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-style: italic;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid hsl(283, 51%, 75%);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: hsl(283, 51%, 75%);
    font-family: serif;
    opacity: 0.3;
}

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

.testimonial-text {
    color: hsl(283, 51%, 35%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

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

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

.client-location {
    color: hsl(283, 51%, 35%);
    font-size: 0.9rem;
    opacity: 0.8;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

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

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

.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, 51%, 75%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

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

.service-icon {
    font-size: 3.5rem;
    color: hsl(283, 51%, 50%);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
    color: hsl(283, 51%, 35%);
}

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

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

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

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

.terms-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-top: 60px;
    backdrop-filter: blur(10px);
}

.terms-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.terms-list {
    color: hsl(283, 51%, 75%);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

.advantages-section {
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 100%);
    padding: 80px 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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

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

.section-subtitle {
    color: hsl(283, 51%, 75%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(283, 51%, 50%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(283, 51%, 35%), hsl(283, 51%, 50%));
}

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

.advantage-title {
    color: hsl(283, 51%, 35%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        margin-bottom: 20px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 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% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.contact-subtitle {
    color: hsl(283, 51%, 75%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

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

.form-label {
    color: hsl(283, 51%, 35%);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid hsl(283, 51%, 75%);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(283, 51%, 35%);
}

.form-control:focus {
    border-color: hsl(283, 51%, 50%);
    box-shadow: 0 0 0 0.2rem rgba(183, 81, 183, 0.25);
    outline: none;
}

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

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

.submit-btn {
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(183, 81, 183, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(183, 81, 183, 0.4);
    background: linear-gradient(135deg, hsl(283, 51%, 55%) 0%, hsl(283, 51%, 40%) 100%);
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
}

.info-title {
    color: hsl(283, 51%, 35%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-text {
    color: hsl(283, 51%, 40%);
    line-height: 1.7;
    font-size: 1rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background: hsl(283, 51%, 75%);
    border-radius: 10px;
    color: white;
    font-weight: 500;
}

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

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

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

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

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

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

.newsletter-subtitle {
    color: hsl(283, 51%, 50%);
    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, 51%, 35%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

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

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(283, 51%, 75%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: hsl(283, 51%, 35%);
}

.email-input:focus {
    border-color: hsl(283, 51%, 50%);
    box-shadow: 0 0 0 3px rgba(155, 81, 155, 0.2);
    background: white;
}

.email-input::placeholder {
    color: hsl(283, 51%, 60%);
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(135deg, hsl(283, 51%, 50%) 0%, hsl(283, 51%, 35%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    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;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(155, 81, 155, 0.4);
    background: linear-gradient(135deg, hsl(283, 51%, 55%) 0%, hsl(283, 51%, 40%) 100%);
}

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

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

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(283, 51%, 95%) 0%, hsl(283, 51%, 90%) 100%);
    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"><circle cx="50" cy="50" r="2" fill="hsl(283, 51%, 75%)" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(283, 51%, 35%);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

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

.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid hsl(283, 51%, 90%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-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.5s ease;
}

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

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

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

.about-image:hover {
    transform: scale(1.05);
}

.content-block h3 {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(283, 51%, 35%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.content-block h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(180deg, hsl(283, 51%, 50%), hsl(283, 51%, 75%));
    border-radius: 3px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(283, 51%, 25%);
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.mission-values {
    background: linear-gradient(135deg, hsl(283, 51%, 50%), hsl(283, 51%, 35%));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.mission-values::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.mission-values h3 {
    color: white;
}

.mission-values h3::before {
    background: linear-gradient(180deg, hsl(283, 51%, 75%), white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid hsl(283, 51%, 90%);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: hsl(283, 51%, 50%);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(283, 51%, 50%), hsl(283, 51%, 75%));
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

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

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

.footer-content {
    border-bottom: 1px solid hsla(283, 51%, 75%, 0.3);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

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

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

.footer-links h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: hsl(283, 51%, 75%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(283, 51%, 75%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(283, 51%, 75%);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(283, 51%, 35%) 0%, hsl(283, 51%, 50%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

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

.cookie-btn-secondary {
    background: transparent;
    color: hsl(283, 51%, 75%);
    border: 2px solid hsl(283, 51%, 75%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-btn-secondary:hover {
    background: hsl(283, 51%, 75%);
    color: hsl(283, 51%, 35%);
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand, .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
    
    .cookie-notice {
        padding: 15px 0;
    }
    
    .cookie-notice .container-fluid {
        padding: 0 15px;
    }
}