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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(262, 59%, 27%);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(262, 59%, 42%);
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
    opacity: 0.9;
}

.story-block {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(111, 66, 193, 0.1);
    border: 1px solid rgba(111, 66, 193, 0.1);
    position: relative;
    overflow: hidden;
}

.story-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
}

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

.story-image:hover {
    transform: scale(1.02);
}

.story-content h3 {
    font-size: 2.2rem;
    color: hsl(262, 59%, 27%);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: hsl(262, 59%, 42%);
    font-weight: 600;
    font-style: italic;
}

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

.value-item {
    background: linear-gradient(135deg, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-block {
    background: linear-gradient(135deg, hsl(262, 59%, 27%), hsl(262, 59%, 42%));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.mission-block h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.mission-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

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

.advantages-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 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"><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;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: hsl(262, 59%, 67%);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(262, 59%, 67%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px hsl(262, 59%, 67%);
    transform: translateY(-50%);
    z-index: 10;
}

.advantage-left {
    margin-right: 60px;
    text-align: right;
}

.advantage-left::before {
    right: -50px;
}

.advantage-right {
    margin-left: 60px;
    text-align: left;
}

.advantage-right::before {
    left: -50px;
}

.advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
    border-radius: 50%;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

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

.advantage-title {
    font-size: 24px;
    font-weight: 700;
    color: hsl(262, 59%, 27%);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-weight: 400;
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 20px;
    color: hsl(262, 59%, 67%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .advantage-left,
    .advantage-right {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }
    
    .advantage-left::before,
    .advantage-right::before {
        left: -50px;
        right: auto;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .advantage-card {
        padding: 25px;
        margin: 30px 0;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 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="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

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

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

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

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(262, 59%, 67%);
    margin-bottom: 20px;
    display: block;
}

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

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

.chart-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

.chart-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.progress-bars {
    display: grid;
    gap: 25px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.progress-label {
    color: hsl(262, 59%, 67%);
    font-weight: 500;
    min-width: 140px;
    font-size: 0.95rem;
}

.progress-bar-container {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
    border-radius: 10px;
    transition: width 2s ease;
    position: relative;
}

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

.progress-percentage {
    color: white;
    font-weight: 600;
    min-width: 45px;
    text-align: right;
    font-size: 0.9rem;
}

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

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

.testimonial-stat {
    text-align: center;
    padding: 20px;
}

.testimonial-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(262, 59%, 67%);
    margin-bottom: 5px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .stats-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .chart-container {
        padding: 30px 20px;
    }
    
    .progress-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .progress-label {
        min-width: auto;
    }
}

footer {
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(262, 59%, 67%);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand h4 {
    color: hsl(262, 59%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.footer-links h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-links a:hover {
    color: hsl(262, 59%, 67%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-item i {
    color: hsl(262, 59%, 67%);
    margin-right: 10px;
    width: 20px;
}

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

.contact-item a:hover {
    color: hsl(262, 59%, 67%);
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 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;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(262, 59%, 67%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.85rem;
}

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

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(262, 59%, 67%);
    color: hsl(262, 59%, 67%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
}

.cookie-btn-secondary:hover {
    background: hsl(262, 59%, 67%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .container-fluid {
        text-align: center;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

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

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-header h1 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.privacy-header p {
    font-size: 1.1em;
    opacity: 0.9;
    margin: 0;
}

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

.section-block:hover {
    transform: translateY(-5px);
}

.section-title {
    color: #667eea;
    font-size: 1.6em;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 10px;
}

.subsection {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #764ba2;
}

.subsection h4 {
    color: #764ba2;
    margin: 0 0 15px 0;
    font-size: 1.2em;
    font-weight: 600;
}

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

.data-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
}

.data-list li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

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

.right-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.right-item h5 {
    color: #667eea;
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

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

.effective-date {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    font-style: italic;
    color: #6c757d;
}

footer {
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(262, 59%, 67%);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand h4 {
    color: hsl(262, 59%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.footer-links h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-links a:hover {
    color: hsl(262, 59%, 67%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-item i {
    color: hsl(262, 59%, 67%);
    margin-right: 10px;
    width: 20px;
}

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

.contact-item a:hover {
    color: hsl(262, 59%, 67%);
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 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;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(262, 59%, 67%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.85rem;
}

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

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(262, 59%, 67%);
    color: hsl(262, 59%, 67%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
}

.cookie-btn-secondary:hover {
    background: hsl(262, 59%, 67%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .container-fluid {
        text-align: center;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

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

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

.cookies-policy h2 {
    color: #34495e;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 1.6em;
    font-weight: 600;
    border-left: 5px solid #e74c3c;
    padding-left: 20px;
    background: rgba(255,255,255,0.7);
    padding: 15px 20px;
    border-radius: 8px;
}

.cookies-policy h3 {
    color: #2980b9;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 500;
}

.cookies-policy p {
    margin-bottom: 18px;
    text-align: justify;
    background: rgba(255,255,255,0.8);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 3px solid #3498db;
}

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

.cookies-policy li {
    margin-bottom: 12px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 6px;
    border-left: 4px solid #27ae60;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

.cookies-policy li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cookies-policy li::before {
    content: "🍪";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.cookies-policy strong {
    color: #e74c3c;
    font-weight: 600;
}

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

.highlight-box h3 {
    color: #fff;
    margin-top: 0;
}

.consent-notice {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px solid #ff6b9d;
}

.gdpr-compliance {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px solid #4ecdc4;
}

footer {
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(262, 59%, 67%);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand h4 {
    color: hsl(262, 59%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.footer-links h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-links a:hover {
    color: hsl(262, 59%, 67%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-item i {
    color: hsl(262, 59%, 67%);
    margin-right: 10px;
    width: 20px;
}

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

.contact-item a:hover {
    color: hsl(262, 59%, 67%);
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 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;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(262, 59%, 67%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.85rem;
}

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

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(262, 59%, 67%);
    color: hsl(262, 59%, 67%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
}

.cookie-btn-secondary:hover {
    background: hsl(262, 59%, 67%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .container-fluid {
        text-align: center;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

.contact-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid hsl(262, 59%, 67%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(262, 59%, 27%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(262, 59%, 42%);
    box-shadow: 0 0 0 3px rgba(126, 58, 242, 0.1);
    transform: translateY(-2px);
}

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

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

.submit-btn {
    background: linear-gradient(45deg, hsl(262, 59%, 42%), hsl(262, 59%, 27%));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(126, 58, 242, 0.4);
    background: linear-gradient(45deg, hsl(262, 59%, 47%), hsl(262, 59%, 32%));
}

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

.contact-info {
    padding-left: 2rem;
}

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

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(262, 59%, 67%);
}

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

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

.hours-title {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.hours-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(262, 59%, 27%);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(262, 59%, 42%);
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
    opacity: 0.9;
}

.story-block {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(111, 66, 193, 0.1);
    border: 1px solid rgba(111, 66, 193, 0.1);
    position: relative;
    overflow: hidden;
}

.story-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
}

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

.story-image:hover {
    transform: scale(1.02);
}

.story-content h3 {
    font-size: 2.2rem;
    color: hsl(262, 59%, 27%);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: hsl(262, 59%, 42%);
    font-weight: 600;
    font-style: italic;
}

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

.value-item {
    background: linear-gradient(135deg, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-block {
    background: linear-gradient(135deg, hsl(262, 59%, 27%), hsl(262, 59%, 42%));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.mission-block h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.mission-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

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

footer {
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(262, 59%, 67%);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand h4 {
    color: hsl(262, 59%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.footer-links h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-links a:hover {
    color: hsl(262, 59%, 67%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-item i {
    color: hsl(262, 59%, 67%);
    margin-right: 10px;
    width: 20px;
}

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

.contact-item a:hover {
    color: hsl(262, 59%, 67%);
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 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;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(262, 59%, 67%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.85rem;
}

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

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(262, 59%, 67%);
    color: hsl(262, 59%, 67%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
}

.cookie-btn-secondary:hover {
    background: hsl(262, 59%, 67%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .container-fluid {
        text-align: center;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

.services-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(262, 59%, 67%, 0.2), 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(262, 59%, 67%);
}

.service-icon {
    background: linear-gradient(135deg, hsl(262, 59%, 42%), hsl(262, 59%, 67%));
    width: 80px;
    height: 80px;
    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);
}

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

.service-title {
    color: hsl(262, 59%, 27%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

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

.service-price {
    background: linear-gradient(135deg, hsl(262, 59%, 42%), hsl(262, 59%, 67%));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-top: auto;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-price:hover {
    background: linear-gradient(135deg, hsl(262, 59%, 27%), hsl(262, 59%, 42%));
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 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="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C10,3 7,1 4,3 C1,1 -2,3 -2,6 C-2,10 10,18 10,18 C10,18 22,10 22,6 C22,3 19,1 16,3 C13,1 10,3 10,6 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>') repeat;
    opacity: 0.1;
}

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

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

.newsletter-title::after {
    content: '💌';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: hsl(262, 59%, 42%);
    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(262, 59%, 27%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

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

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

.email-input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

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

.email-input:focus {
    border-color: hsl(262, 59%, 42%);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: hsl(262, 59%, 67%);
    font-style: italic;
}

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

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.4);
    background: linear-gradient(45deg, hsl(262, 59%, 47%), hsl(262, 59%, 32%));
}

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(262, 59%, 42%);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 100%);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-subtitle {
    color: hsl(262, 59%, 67%);
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-scroll {
    height: 600px;
    overflow-y: auto;
    padding-right: 20px;
}

.testimonials-scroll::-webkit-scrollbar {
    width: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: hsl(262, 59%, 67%);
    border-radius: 10px;
}

.testimonial-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);
    border-left: 5px solid hsl(262, 59%, 67%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.testimonial-text {
    color: hsl(262, 59%, 27%);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    padding-left: 20px;
}

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid hsl(262, 59%, 67%);
    padding-top: 15px;
}

.client-name {
    color: hsl(262, 59%, 42%);
    font-weight: 600;
    font-size: 1.1rem;
}

.client-location {
    color: hsl(262, 59%, 67%);
    font-size: 0.9rem;
    font-weight: 400;
}

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

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-scroll {
        height: 500px;
        padding-right: 10px;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .client-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(262, 59%, 67%);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand h4 {
    color: hsl(262, 59%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.footer-links h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-links a:hover {
    color: hsl(262, 59%, 67%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-item i {
    color: hsl(262, 59%, 67%);
    margin-right: 10px;
    width: 20px;
}

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

.contact-item a:hover {
    color: hsl(262, 59%, 67%);
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 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;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(262, 59%, 67%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.85rem;
}

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

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(262, 59%, 67%);
    color: hsl(262, 59%, 67%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
}

.cookie-btn-secondary:hover {
    background: hsl(262, 59%, 67%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .container-fluid {
        text-align: center;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

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

.terms-title {
    text-align: center;
    font-size: 2.5em;
    color: #1a252f;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.terms-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #6c757d;
    margin-bottom: 40px;
    font-style: italic;
}

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

.section-title {
    font-size: 1.4em;
    color: #8b4513;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 2px solid #f0e6d2;
    padding-bottom: 8px;
}

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

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

.terms-list li {
    margin-bottom: 8px;
    color: #495057;
}

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

.important-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #d4a574;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    font-weight: 500;
    text-align: center;
    color: #856404;
}

footer {
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(262, 59%, 67%);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand h4 {
    color: hsl(262, 59%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.footer-links h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-links a:hover {
    color: hsl(262, 59%, 67%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-item i {
    color: hsl(262, 59%, 67%);
    margin-right: 10px;
    width: 20px;
}

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

.contact-item a:hover {
    color: hsl(262, 59%, 67%);
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 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;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(262, 59%, 67%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.85rem;
}

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

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(262, 59%, 67%);
    color: hsl(262, 59%, 67%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
}

.cookie-btn-secondary:hover {
    background: hsl(262, 59%, 67%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .container-fluid {
        text-align: center;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

.faq-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.faq-title p {
    color: hsl(262, 59%, 67%);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    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-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.faq-question {
    background: white;
    border: none;
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(262, 59%, 27%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: hsl(262, 59%, 67%);
    color: white;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: hsl(262, 59%, 42%);
}

.faq-question:hover::after {
    color: white;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: linear-gradient(to bottom, rgba(262, 59%, 67%, 0.1), transparent);
}

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

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: hsl(262, 59%, 27%);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer-content li {
    margin-bottom: 8px;
    color: hsl(262, 59%, 35%);
}

@media (max-width: 768px) {
    .faq-title h2 {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(262, 59%, 27%);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(262, 59%, 42%);
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
    opacity: 0.9;
}

.story-block {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(111, 66, 193, 0.1);
    border: 1px solid rgba(111, 66, 193, 0.1);
    position: relative;
    overflow: hidden;
}

.story-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
}

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

.story-image:hover {
    transform: scale(1.02);
}

.story-content h3 {
    font-size: 2.2rem;
    color: hsl(262, 59%, 27%);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: hsl(262, 59%, 42%);
    font-weight: 600;
    font-style: italic;
}

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

.value-item {
    background: linear-gradient(135deg, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-block {
    background: linear-gradient(135deg, hsl(262, 59%, 27%), hsl(262, 59%, 42%));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.mission-block h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.mission-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 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="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C10,3 7,1 4,3 C1,1 -2,3 -2,6 C-2,10 10,18 10,18 C10,18 22,10 22,6 C22,3 19,1 16,3 C13,1 10,3 10,6 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>') repeat;
    opacity: 0.1;
}

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

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

.newsletter-title::after {
    content: '💌';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: hsl(262, 59%, 42%);
    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(262, 59%, 27%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

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

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

.email-input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

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

.email-input:focus {
    border-color: hsl(262, 59%, 42%);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: hsl(262, 59%, 67%);
    font-style: italic;
}

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

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.4);
    background: linear-gradient(45deg, hsl(262, 59%, 47%), hsl(262, 59%, 32%));
}

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(262, 59%, 42%);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

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

footer {
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(262, 59%, 67%);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand h4 {
    color: hsl(262, 59%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.footer-links h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-links a:hover {
    color: hsl(262, 59%, 67%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-item i {
    color: hsl(262, 59%, 67%);
    margin-right: 10px;
    width: 20px;
}

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

.contact-item a:hover {
    color: hsl(262, 59%, 67%);
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 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;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(262, 59%, 67%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.85rem;
}

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

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(262, 59%, 67%);
    color: hsl(262, 59%, 67%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
}

.cookie-btn-secondary:hover {
    background: hsl(262, 59%, 67%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .container-fluid {
        text-align: center;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

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

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

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

.hero-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
}

.hero-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid hsl(262, 59%, 67%);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: hsl(262, 59%, 67%);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: left;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.benefits-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2.5rem;
    animation: fadeInLeft 0.6s ease-out calc(0.6s + var(--i) * 0.1s) both;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: hsl(262, 59%, 67%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-list li:nth-child(1) { --i: 0; }
.benefits-list li:nth-child(2) { --i: 1; }
.benefits-list li:nth-child(3) { --i: 2; }
.benefits-list li:nth-child(4) { --i: 3; }
.benefits-list li:nth-child(5) { --i: 4; }

.cta-buttons {
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary-custom {
    background: hsl(262, 59%, 67%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
    background: white;
    color: hsl(262, 59%, 42%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(262, 59%, 67%);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: hsl(262, 59%, 67%);
}

.btn-secondary-custom:hover {
    background: hsl(262, 59%, 67%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        display: block;
        margin: 0.5rem auto;
        max-width: 280px;
    }
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(262, 59%, 27%);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(262, 59%, 42%);
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
    opacity: 0.9;
}

.story-block {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(111, 66, 193, 0.1);
    border: 1px solid rgba(111, 66, 193, 0.1);
    position: relative;
    overflow: hidden;
}

.story-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
}

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

.story-image:hover {
    transform: scale(1.02);
}

.story-content h3 {
    font-size: 2.2rem;
    color: hsl(262, 59%, 27%);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: hsl(262, 59%, 42%);
    font-weight: 600;
    font-style: italic;
}

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

.value-item {
    background: linear-gradient(135deg, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-block {
    background: linear-gradient(135deg, hsl(262, 59%, 27%), hsl(262, 59%, 42%));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.mission-block h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.mission-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

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

.services-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(262, 59%, 67%, 0.2), 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(262, 59%, 67%);
}

.service-icon {
    background: linear-gradient(135deg, hsl(262, 59%, 42%), hsl(262, 59%, 67%));
    width: 80px;
    height: 80px;
    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);
}

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

.service-title {
    color: hsl(262, 59%, 27%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

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

.service-price {
    background: linear-gradient(135deg, hsl(262, 59%, 42%), hsl(262, 59%, 67%));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-top: auto;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-price:hover {
    background: linear-gradient(135deg, hsl(262, 59%, 27%), hsl(262, 59%, 42%));
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}

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

.contact-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid hsl(262, 59%, 67%);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(262, 59%, 27%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(262, 59%, 42%);
    box-shadow: 0 0 0 3px rgba(126, 58, 242, 0.1);
    transform: translateY(-2px);
}

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

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

.submit-btn {
    background: linear-gradient(45deg, hsl(262, 59%, 42%), hsl(262, 59%, 27%));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(126, 58, 242, 0.4);
    background: linear-gradient(45deg, hsl(262, 59%, 47%), hsl(262, 59%, 32%));
}

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

.contact-info {
    padding-left: 2rem;
}

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

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(262, 59%, 67%);
}

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

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

.hours-title {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.hours-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 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="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

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

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

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

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(262, 59%, 67%);
    margin-bottom: 20px;
    display: block;
}

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

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

.chart-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

.chart-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.progress-bars {
    display: grid;
    gap: 25px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.progress-label {
    color: hsl(262, 59%, 67%);
    font-weight: 500;
    min-width: 140px;
    font-size: 0.95rem;
}

.progress-bar-container {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
    border-radius: 10px;
    transition: width 2s ease;
    position: relative;
}

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

.progress-percentage {
    color: white;
    font-weight: 600;
    min-width: 45px;
    text-align: right;
    font-size: 0.9rem;
}

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

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

.testimonial-stat {
    text-align: center;
    padding: 20px;
}

.testimonial-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(262, 59%, 67%);
    margin-bottom: 5px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .stats-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .chart-container {
        padding: 30px 20px;
    }
    
    .progress-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .progress-label {
        min-width: auto;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 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="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C10,3 7,1 4,3 C1,1 -2,3 -2,6 C-2,10 10,18 10,18 C10,18 22,10 22,6 C22,3 19,1 16,3 C13,1 10,3 10,6 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>') repeat;
    opacity: 0.1;
}

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

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

.newsletter-title::after {
    content: '💌';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: hsl(262, 59%, 42%);
    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(262, 59%, 27%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

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

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

.email-input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

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

.email-input:focus {
    border-color: hsl(262, 59%, 42%);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: hsl(262, 59%, 67%);
    font-style: italic;
}

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

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.4);
    background: linear-gradient(45deg, hsl(262, 59%, 47%), hsl(262, 59%, 32%));
}

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(262, 59%, 42%);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

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

.advantages-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 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"><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;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: hsl(262, 59%, 67%);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(262, 59%, 67%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px hsl(262, 59%, 67%);
    transform: translateY(-50%);
    z-index: 10;
}

.advantage-left {
    margin-right: 60px;
    text-align: right;
}

.advantage-left::before {
    right: -50px;
}

.advantage-right {
    margin-left: 60px;
    text-align: left;
}

.advantage-right::before {
    left: -50px;
}

.advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(262, 59%, 67%), hsl(262, 59%, 42%));
    border-radius: 50%;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

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

.advantage-title {
    font-size: 24px;
    font-weight: 700;
    color: hsl(262, 59%, 27%);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-weight: 400;
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 20px;
    color: hsl(262, 59%, 67%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .advantage-left,
    .advantage-right {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }
    
    .advantage-left::before,
    .advantage-right::before {
        left: -50px;
        right: auto;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .advantage-card {
        padding: 25px;
        margin: 30px 0;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 100%);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-subtitle {
    color: hsl(262, 59%, 67%);
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-scroll {
    height: 600px;
    overflow-y: auto;
    padding-right: 20px;
}

.testimonials-scroll::-webkit-scrollbar {
    width: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: hsl(262, 59%, 67%);
    border-radius: 10px;
}

.testimonial-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);
    border-left: 5px solid hsl(262, 59%, 67%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.testimonial-text {
    color: hsl(262, 59%, 27%);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    padding-left: 20px;
}

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid hsl(262, 59%, 67%);
    padding-top: 15px;
}

.client-name {
    color: hsl(262, 59%, 42%);
    font-weight: 600;
    font-size: 1.1rem;
}

.client-location {
    color: hsl(262, 59%, 67%);
    font-size: 0.9rem;
    font-weight: 400;
}

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

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-scroll {
        height: 500px;
        padding-right: 10px;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .client-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(262, 59%, 42%) 0%, hsl(262, 59%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.faq-title p {
    color: hsl(262, 59%, 67%);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    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-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.faq-question {
    background: white;
    border: none;
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(262, 59%, 27%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: hsl(262, 59%, 67%);
    color: white;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: hsl(262, 59%, 42%);
}

.faq-question:hover::after {
    color: white;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: linear-gradient(to bottom, rgba(262, 59%, 67%, 0.1), transparent);
}

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

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: hsl(262, 59%, 27%);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer-content li {
    margin-bottom: 8px;
    color: hsl(262, 59%, 35%);
}

@media (max-width: 768px) {
    .faq-title h2 {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    border-bottom: 1px solid hsl(262, 59%, 67%);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand h4 {
    color: hsl(262, 59%, 67%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.footer-links h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

.footer-links a:hover {
    color: hsl(262, 59%, 67%);
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(262, 59%, 67%);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.contact-item i {
    color: hsl(262, 59%, 67%);
    margin-right: 10px;
    width: 20px;
}

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

.contact-item a:hover {
    color: hsl(262, 59%, 67%);
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(262, 59%, 27%) 0%, hsl(262, 59%, 42%) 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;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(262, 59%, 67%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-size: 0.85rem;
}

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

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(262, 59%, 67%);
    color: hsl(262, 59%, 67%);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
}

.cookie-btn-secondary:hover {
    background: hsl(262, 59%, 67%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .container-fluid {
        text-align: center;
    }
    
    .cookie-btn, .cookie-btn-secondary {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}