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

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, hsl(283, 67%, 65%), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.4rem;
    color: hsl(283, 67%, 65%);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.story-block h3 {
    color: hsl(283, 67%, 65%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-block p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.image-container {
    position: relative;
    margin-bottom: 2rem;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, hsl(283, 67%, 65%) 100%);
    opacity: 0.2;
    border-radius: 20px;
    pointer-events: none;
}

.mission-values {
    background: linear-gradient(135deg, hsl(283, 67%, 65%) 0%, hsl(283, 67%, 40%) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

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

.advantages-section {
    background: linear-gradient(135deg, hsl(283, 67%, 40%) 0%, hsl(283, 67%, 25%) 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="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

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

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
    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.6s;
}

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

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

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(283, 67%, 40%), hsl(283, 67%, 65%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

.advantage-title {
    color: hsl(283, 67%, 25%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
}

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

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

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

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

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

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

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

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

.stat-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: conic-gradient(hsl(283, 67%, 65%) 0deg, transparent 360deg);
    z-index: -1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

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

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

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

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

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

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

footer {
    background: linear-gradient(135deg, hsl(283, 67%, 25%) 0%, hsl(283, 67%, 40%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(283, 67%, 65%);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

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

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

.footer-links h5 {
    color: hsl(283, 67%, 65%);
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: hsl(283, 67%, 65%);
    opacity: 1;
}

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

.contact-info i {
    color: hsl(283, 67%, 65%);
    margin-right: 10px;
    width: 20px;
}

.copyright {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

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

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

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

.cookie-btn {
    background: hsl(283, 67%, 65%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-btn:hover {
    background: hsl(283, 67%, 75%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(283, 67%, 65%);
    color: hsl(283, 67%, 65%);
}

.cookie-btn-outline:hover {
    background: hsl(283, 67%, 65%);
    color: white;
}

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

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

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

.privacy-policy h1 {
    color: #8b4513;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #d4af37;
    padding-bottom: 15px;
}

.privacy-policy h2 {
    color: #8b4513;
    font-size: 1.6em;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #d4af37;
    background: rgba(212, 175, 55, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
}

.privacy-policy h3 {
    color: #5d4e37;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-policy p {
    margin-bottom: 18px;
    text-align: justify;
    padding: 0 10px;
}

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

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

.privacy-policy li::marker {
    color: #d4af37;
    font-weight: bold;
}

.highlight-box {
    background: rgba(139, 69, 19, 0.1);
    border: 1px solid #d4af37;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 8px;
}

.privacy-policy strong {
    color: #8b4513;
    font-weight: 600;
}

footer {
    background: linear-gradient(135deg, hsl(283, 67%, 25%) 0%, hsl(283, 67%, 40%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(283, 67%, 65%);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

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

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

.footer-links h5 {
    color: hsl(283, 67%, 65%);
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: hsl(283, 67%, 65%);
    opacity: 1;
}

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

.contact-info i {
    color: hsl(283, 67%, 65%);
    margin-right: 10px;
    width: 20px;
}

.copyright {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

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

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

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

.cookie-btn {
    background: hsl(283, 67%, 65%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-btn:hover {
    background: hsl(283, 67%, 75%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(283, 67%, 65%);
    color: hsl(283, 67%, 65%);
}

.cookie-btn-outline:hover {
    background: hsl(283, 67%, 65%);
    color: white;
}

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

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

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

.cookies-policy h1 {
    color: #8b4513;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #d4af37;
    padding-bottom: 15px;
}

.cookies-policy h2 {
    color: #654321;
    font-size: 1.6em;
    margin: 35px 0 20px 0;
    padding: 15px 20px;
    background: linear-gradient(90deg, #fff8dc, #f0e68c);
    border-left: 5px solid #d4af37;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.cookies-policy p {
    margin-bottom: 18px;
    text-align: justify;
    padding: 0 10px;
}

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

.cookies-policy li {
    margin-bottom: 12px;
    padding: 8px 15px;
    background: rgba(255,255,255,0.7);
    border-radius: 5px;
    border-left: 3px solid #d4af37;
}

.cookie-type {
    background: linear-gradient(135deg, #fff8dc 0%, #f5deb3 100%);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    border: 2px solid #daa520;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-box {
    background: linear-gradient(135deg, #ffe4b5 0%, #ffd700 100%);
    padding: 25px;
    margin: 25px 0;
    border-radius: 12px;
    border: 2px solid #b8860b;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.consent-notice {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
    border: 2px solid #4682b4;
    text-align: center;
    font-weight: 500;
}

.gdpr-section {
    background: linear-gradient(135deg, #f5f5dc 0%, #e6e6fa 100%);
    padding: 25px;
    margin: 25px 0;
    border-radius: 10px;
    border: 2px solid #9370db;
}

.table-container {
    overflow-x: auto;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: white;
    font-weight: 600;
}

tr:hover {
    background-color: #f5f5f5;
}

footer {
    background: linear-gradient(135deg, hsl(283, 67%, 25%) 0%, hsl(283, 67%, 40%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(283, 67%, 65%);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

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

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

.footer-links h5 {
    color: hsl(283, 67%, 65%);
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: hsl(283, 67%, 65%);
    opacity: 1;
}

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

.contact-info i {
    color: hsl(283, 67%, 65%);
    margin-right: 10px;
    width: 20px;
}

.copyright {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

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

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

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

.cookie-btn {
    background: hsl(283, 67%, 65%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-btn:hover {
    background: hsl(283, 67%, 75%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(283, 67%, 65%);
    color: hsl(283, 67%, 65%);
}

.cookie-btn-outline:hover {
    background: hsl(283, 67%, 65%);
    color: white;
}

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

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

.contact-section {
    background: linear-gradient(135deg, hsl(283, 67%, 40%) 0%, hsl(283, 67%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.contact-subtitle {
    color: hsl(283, 67%, 85%);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.consultation-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

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

.info-text {
    color: hsl(283, 67%, 90%);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid hsl(283, 67%, 65%);
}

.hours-title {
    color: hsl(283, 67%, 65%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hours-list {
    color: white;
    list-style: none;
    padding: 0;
}

.hours-list li {
    padding: 0.3rem 0;
    display: flex;
    justify-content: space-between;
}

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

.form-title {
    color: hsl(283, 67%, 25%);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-label {
    color: hsl(283, 67%, 30%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid hsl(283, 67%, 85%);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(283, 67%, 25%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(283, 67%, 65%);
    box-shadow: 0 0 0 3px rgba(164, 69, 178, 0.1);
    transform: translateY(-2px);
}

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

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

.submit-btn {
    background: linear-gradient(135deg, hsl(283, 67%, 40%) 0%, hsl(283, 67%, 50%) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    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 25px rgba(164, 69, 178, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(164, 69, 178, 0.4);
    background: linear-gradient(135deg, hsl(283, 67%, 45%) 0%, hsl(283, 67%, 55%) 100%);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: hsl(283, 67%, 65%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

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

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, hsl(283, 67%, 65%), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.4rem;
    color: hsl(283, 67%, 65%);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.story-block h3 {
    color: hsl(283, 67%, 65%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-block p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.image-container {
    position: relative;
    margin-bottom: 2rem;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, hsl(283, 67%, 65%) 100%);
    opacity: 0.2;
    border-radius: 20px;
    pointer-events: none;
}

.mission-values {
    background: linear-gradient(135deg, hsl(283, 67%, 65%) 0%, hsl(283, 67%, 40%) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

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

footer {
    background: linear-gradient(135deg, hsl(283, 67%, 25%) 0%, hsl(283, 67%, 40%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(283, 67%, 65%);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

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

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

.footer-links h5 {
    color: hsl(283, 67%, 65%);
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: hsl(283, 67%, 65%);
    opacity: 1;
}

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

.contact-info i {
    color: hsl(283, 67%, 65%);
    margin-right: 10px;
    width: 20px;
}

.copyright {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

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

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

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

.cookie-btn {
    background: hsl(283, 67%, 65%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-btn:hover {
    background: hsl(283, 67%, 75%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(283, 67%, 65%);
    color: hsl(283, 67%, 65%);
}

.cookie-btn-outline:hover {
    background: hsl(283, 67%, 65%);
    color: white;
}

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

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

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

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

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

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border-color: hsl(283, 67%, 65%);
    background: rgba(255, 255, 255, 1);
}

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

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

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

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

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

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(283, 67%, 40%);
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
}

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

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

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

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

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

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

.benefits-list li {
    padding: 12px 0;
    color: hsl(283, 67%, 25%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

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

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

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

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

.form-control:focus {
    outline: none;
    border-color: hsl(283, 67%, 40%);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
    background: white;
}

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

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(283, 67%, 40%) 0%, hsl(283, 67%, 25%) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    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.2), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, hsl(283, 67%, 45%) 0%, hsl(283, 67%, 30%) 100%);
}

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

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(283, 67%, 40%);
    text-align: center;
    margin-top: 20px;
    opacity: 0.8;
}

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

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

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

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

.section-subtitle {
    color: hsl(283, 67%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
}

.testimonials-container {
    height: 600px;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

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

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 0 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid hsl(283, 67%, 65%);
    position: relative;
    backdrop-filter: blur(10px);
    min-height: 200px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(283, 67%, 40%);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.customer-info {
    border-top: 2px solid hsl(283, 67%, 90%);
    padding-top: 1rem;
}

.customer-name {
    font-weight: 700;
    color: hsl(283, 67%, 25%);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.customer-location {
    color: hsl(283, 67%, 50%);
    font-size: 1rem;
    font-weight: 500;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(283, 67%, 25%) 0%, hsl(283, 67%, 40%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(283, 67%, 65%);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

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

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

.footer-links h5 {
    color: hsl(283, 67%, 65%);
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: hsl(283, 67%, 65%);
    opacity: 1;
}

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

.contact-info i {
    color: hsl(283, 67%, 65%);
    margin-right: 10px;
    width: 20px;
}

.copyright {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

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

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

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

.cookie-btn {
    background: hsl(283, 67%, 65%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-btn:hover {
    background: hsl(283, 67%, 75%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(283, 67%, 65%);
    color: hsl(283, 67%, 65%);
}

.cookie-btn-outline:hover {
    background: hsl(283, 67%, 65%);
    color: white;
}

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

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

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

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

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

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

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

.highlight {
    background: linear-gradient(120deg, #ffd700 0%, #ffed4e 100%);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
}

.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-style: italic;
    color: #856404;
}

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

footer {
    background: linear-gradient(135deg, hsl(283, 67%, 25%) 0%, hsl(283, 67%, 40%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(283, 67%, 65%);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

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

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

.footer-links h5 {
    color: hsl(283, 67%, 65%);
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: hsl(283, 67%, 65%);
    opacity: 1;
}

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

.contact-info i {
    color: hsl(283, 67%, 65%);
    margin-right: 10px;
    width: 20px;
}

.copyright {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

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

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

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

.cookie-btn {
    background: hsl(283, 67%, 65%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-btn:hover {
    background: hsl(283, 67%, 75%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(283, 67%, 65%);
    color: hsl(283, 67%, 65%);
}

.cookie-btn-outline:hover {
    background: hsl(283, 67%, 65%);
    color: white;
}

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

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

.faq-section {
    background: linear-gradient(135deg, hsl(283, 67%, 40%) 0%, hsl(283, 67%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="70" r="1.2" fill="rgba(255,255,255,0.12)"/><circle cx="30" cy="90" r="0.8" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    pointer-events: none;
}

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

.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, 67%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.faq-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-accordion .accordion-header {
    border: none;
}

.faq-accordion .accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(283, 67%, 25%);
    border-radius: 15px;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(283, 67%, 65%);
    color: white;
    box-shadow: none;
}

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

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

.faq-accordion .accordion-body {
    padding: 0 30px 30px 30px;
    color: hsl(283, 67%, 30%);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-accordion .accordion-body p {
    margin-bottom: 15px;
}

.faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: hsl(283, 67%, 40%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-accordion .accordion-button {
        padding: 20px 20px;
        font-size: 1rem;
    }
    
    .faq-accordion .accordion-body {
        padding: 0 20px 25px 20px;
        font-size: 0.95rem;
    }
}

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, hsl(283, 67%, 65%), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.4rem;
    color: hsl(283, 67%, 65%);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.story-block h3 {
    color: hsl(283, 67%, 65%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-block p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.image-container {
    position: relative;
    margin-bottom: 2rem;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, hsl(283, 67%, 65%) 100%);
    opacity: 0.2;
    border-radius: 20px;
    pointer-events: none;
}

.mission-values {
    background: linear-gradient(135deg, hsl(283, 67%, 65%) 0%, hsl(283, 67%, 40%) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

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

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

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

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

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

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

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

.benefits-list li {
    padding: 12px 0;
    color: hsl(283, 67%, 25%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

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

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

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

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

.form-control:focus {
    outline: none;
    border-color: hsl(283, 67%, 40%);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
    background: white;
}

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

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(283, 67%, 40%) 0%, hsl(283, 67%, 25%) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    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.2), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, hsl(283, 67%, 45%) 0%, hsl(283, 67%, 30%) 100%);
}

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

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(283, 67%, 40%);
    text-align: center;
    margin-top: 20px;
    opacity: 0.8;
}

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

footer {
    background: linear-gradient(135deg, hsl(283, 67%, 25%) 0%, hsl(283, 67%, 40%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(283, 67%, 65%);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

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

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

.footer-links h5 {
    color: hsl(283, 67%, 65%);
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: hsl(283, 67%, 65%);
    opacity: 1;
}

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

.contact-info i {
    color: hsl(283, 67%, 65%);
    margin-right: 10px;
    width: 20px;
}

.copyright {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

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

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

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

.cookie-btn {
    background: hsl(283, 67%, 65%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-btn:hover {
    background: hsl(283, 67%, 75%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(283, 67%, 65%);
    color: hsl(283, 67%, 65%);
}

.cookie-btn-outline:hover {
    background: hsl(283, 67%, 65%);
    color: white;
}

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

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

.hero-section {
  background: linear-gradient(135deg, hsl(283, 67%, 40%) 0%, hsl(283, 67%, 25%) 100%);
  min-height: 100vh;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: 
    "title image"
    "subtitle image"
    "description cta";
  gap: 2rem;
  align-items: center;
  min-height: 70vh;
}

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

.hero-subtitle {
  grid-area: subtitle;
  color: hsl(283, 67%, 65%);
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
  opacity: 0.9;
}

.hero-image {
  grid-area: image;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

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

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.hero-content {
  grid-area: description;
  color: white;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.hero-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: hsl(283, 67%, 65%);
}

.hero-features i {
  color: hsl(283, 67%, 65%);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.hero-cta {
  grid-area: cta;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.btn-primary-custom {
  background: hsl(283, 67%, 65%);
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-custom:hover {
  background: hsl(283, 67%, 55%);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
  color: white;
}

.btn-secondary-custom {
  background: transparent;
  border: 2px solid hsl(283, 67%, 65%);
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  color: hsl(283, 67%, 65%);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary-custom:hover {
  background: hsl(283, 67%, 65%);
  color: white;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "title"
      "subtitle"
      "image"
      "description"
      "cta";
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image {
    transform: none;
  }
  
  .hero-cta {
    align-items: center;
  }
}

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

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

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

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border-color: hsl(283, 67%, 65%);
    background: rgba(255, 255, 255, 1);
}

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

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

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

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

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

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(283, 67%, 40%);
    margin-bottom: 15px;
}

.service-conditions {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
}

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

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

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

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

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

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

.benefits-list li {
    padding: 12px 0;
    color: hsl(283, 67%, 25%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

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

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

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

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

.form-control:focus {
    outline: none;
    border-color: hsl(283, 67%, 40%);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
    background: white;
}

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

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(283, 67%, 40%) 0%, hsl(283, 67%, 25%) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    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.2), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, hsl(283, 67%, 45%) 0%, hsl(283, 67%, 30%) 100%);
}

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

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(283, 67%, 40%);
    text-align: center;
    margin-top: 20px;
    opacity: 0.8;
}

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

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

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

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

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

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

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

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

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

.stat-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: conic-gradient(hsl(283, 67%, 65%) 0deg, transparent 360deg);
    z-index: -1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

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

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

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

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

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

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

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, hsl(283, 67%, 65%), white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.4rem;
    color: hsl(283, 67%, 65%);
    margin-bottom: 3rem;
    font-style: italic;
}

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

.story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.story-block h3 {
    color: hsl(283, 67%, 65%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-block p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.image-container {
    position: relative;
    margin-bottom: 2rem;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, hsl(283, 67%, 65%) 100%);
    opacity: 0.2;
    border-radius: 20px;
    pointer-events: none;
}

.mission-values {
    background: linear-gradient(135deg, hsl(283, 67%, 65%) 0%, hsl(283, 67%, 40%) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

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

.advantages-section {
    background: linear-gradient(135deg, hsl(283, 67%, 40%) 0%, hsl(283, 67%, 25%) 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="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

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

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
    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.6s;
}

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

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

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(283, 67%, 40%), hsl(283, 67%, 65%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

.advantage-title {
    color: hsl(283, 67%, 25%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(283, 67%, 40%) 0%, hsl(283, 67%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="70" r="1.2" fill="rgba(255,255,255,0.12)"/><circle cx="30" cy="90" r="0.8" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    pointer-events: none;
}

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

.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, 67%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.faq-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-accordion .accordion-header {
    border: none;
}

.faq-accordion .accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(283, 67%, 25%);
    border-radius: 15px;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(283, 67%, 65%);
    color: white;
    box-shadow: none;
}

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

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

.faq-accordion .accordion-body {
    padding: 0 30px 30px 30px;
    color: hsl(283, 67%, 30%);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-accordion .accordion-body p {
    margin-bottom: 15px;
}

.faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: hsl(283, 67%, 40%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-accordion .accordion-button {
        padding: 20px 20px;
        font-size: 1rem;
    }
    
    .faq-accordion .accordion-body {
        padding: 0 20px 25px 20px;
        font-size: 0.95rem;
    }
}

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

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

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

.section-subtitle {
    color: hsl(283, 67%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
}

.testimonials-container {
    height: 600px;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

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

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 0 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid hsl(283, 67%, 65%);
    position: relative;
    backdrop-filter: blur(10px);
    min-height: 200px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(283, 67%, 40%);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.customer-info {
    border-top: 2px solid hsl(283, 67%, 90%);
    padding-top: 1rem;
}

.customer-name {
    font-weight: 700;
    color: hsl(283, 67%, 25%);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.customer-location {
    color: hsl(283, 67%, 50%);
    font-size: 1rem;
    font-weight: 500;
}

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

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

.contact-section {
    background: linear-gradient(135deg, hsl(283, 67%, 40%) 0%, hsl(283, 67%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.contact-subtitle {
    color: hsl(283, 67%, 85%);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.consultation-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

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

.info-text {
    color: hsl(283, 67%, 90%);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid hsl(283, 67%, 65%);
}

.hours-title {
    color: hsl(283, 67%, 65%);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hours-list {
    color: white;
    list-style: none;
    padding: 0;
}

.hours-list li {
    padding: 0.3rem 0;
    display: flex;
    justify-content: space-between;
}

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

.form-title {
    color: hsl(283, 67%, 25%);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-label {
    color: hsl(283, 67%, 30%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid hsl(283, 67%, 85%);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(283, 67%, 25%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(283, 67%, 65%);
    box-shadow: 0 0 0 3px rgba(164, 69, 178, 0.1);
    transform: translateY(-2px);
}

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

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

.submit-btn {
    background: linear-gradient(135deg, hsl(283, 67%, 40%) 0%, hsl(283, 67%, 50%) 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    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 25px rgba(164, 69, 178, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(164, 69, 178, 0.4);
    background: linear-gradient(135deg, hsl(283, 67%, 45%) 0%, hsl(283, 67%, 55%) 100%);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: hsl(283, 67%, 65%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

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

footer {
    background: linear-gradient(135deg, hsl(283, 67%, 25%) 0%, hsl(283, 67%, 40%) 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(283, 67%, 65%);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

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

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

.footer-links h5 {
    color: hsl(283, 67%, 65%);
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: hsl(283, 67%, 65%);
    opacity: 1;
}

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

.contact-info i {
    color: hsl(283, 67%, 65%);
    margin-right: 10px;
    width: 20px;
}

.copyright {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

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

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

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

.cookie-btn {
    background: hsl(283, 67%, 65%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-btn:hover {
    background: hsl(283, 67%, 75%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(283, 67%, 65%);
    color: hsl(283, 67%, 65%);
}

.cookie-btn-outline:hover {
    background: hsl(283, 67%, 65%);
    color: white;
}

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