:root {
            --primary-color: hsl(257, 56%, 36%);
            --secondary-color: hsl(257, 56%, 21%);
            --accent-color: hsl(257, 56%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            margin: 0 8px;
        }
        
        .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: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

.about-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(257, 56%, 61%);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, hsl(257, 56%, 61%) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: translateX(-50%);
}

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

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

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

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 2rem;
    position: relative;
}

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

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.1);
}

.timeline-image {
    flex: 1;
    margin: 0 2rem;
}

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

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

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(257, 56%, 61%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 20px hsl(257, 56%, 61%);
}

.content-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(257, 56%, 61%);
    margin-bottom: 1rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.mission-values {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-icon {
    font-size: 3rem;
    color: hsl(257, 56%, 61%);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(257, 56%, 61%);
    margin-bottom: 0.5rem;
}

.value-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 60px;
    }
    
    .timeline-content {
        margin: 0 0 1rem 0;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-image {
        margin: 0;
        width: 100%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mission-values {
        padding: 2rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 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.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    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(257, 56%, 61%);
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(257, 56%, 61%), hsl(257, 56%, 36%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

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

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

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .zigzag-left .advantage-card,
    .zigzag-right .advantage-card {
        margin-left: auto;
        margin-right: auto;
    }
}

.advantage-number {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: hsl(257, 56%, 61%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.statistics-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

.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(257, 56%, 61%);
    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: 40px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    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);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(257, 56%, 61%);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(257, 56%, 61%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

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

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

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

.highlight-accent {
    color: hsl(257, 56%, 61%);
}

footer {
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(257, 56%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: hsl(257, 56%, 61%);
    transform: translateX(5px);
}

.contact-info {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.contact-info strong {
    color: hsl(257, 56%, 61%);
}

.contact-info a {
    color: hsl(257, 56%, 61%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    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: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(257, 56%, 61%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(257, 56%, 36%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(257, 56%, 61%);
    color: hsl(257, 56%, 61%);
}

.cookie-btn-secondary:hover {
    background: hsl(257, 56%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 120px;
    }
}

:root {
            --primary-color: hsl(257, 56%, 36%);
            --secondary-color: hsl(257, 56%, 21%);
            --accent-color: hsl(257, 56%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            margin: 0 8px;
        }
        
        .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: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

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

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

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

.privacy-header p {
    font-size: 1.2em;
    color: #666;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #2c5aa0;
}

.privacy-section h2 {
    color: #2c5aa0;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f2ff;
}

.privacy-section h3 {
    color: #1a365d;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
}

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

.privacy-list {
    background: #f8fbff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

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

.privacy-list li {
    margin-bottom: 10px;
    color: #444;
}

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

.highlight-box h3 {
    color: white;
    margin-bottom: 15px;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e8f2ff;
}

footer {
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(257, 56%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: hsl(257, 56%, 61%);
    transform: translateX(5px);
}

.contact-info {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.contact-info strong {
    color: hsl(257, 56%, 61%);
}

.contact-info a {
    color: hsl(257, 56%, 61%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    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: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(257, 56%, 61%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(257, 56%, 36%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(257, 56%, 61%);
    color: hsl(257, 56%, 61%);
}

.cookie-btn-secondary:hover {
    background: hsl(257, 56%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 120px;
    }
}

:root {
            --primary-color: hsl(257, 56%, 36%);
            --secondary-color: hsl(257, 56%, 21%);
            --accent-color: hsl(257, 56%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            margin: 0 8px;
        }
        
        .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: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

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

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.policy-header h1 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.policy-header .subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    font-weight: 300;
}

.policy-section {
    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 #3498db;
    transition: transform 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
}

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

.policy-section h3 {
    color: #34495e;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

.cookie-type {
    background: #f8f9fa;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

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

.highlight-box {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.highlight-box strong {
    font-size: 1.1em;
}

.consent-notice {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.gdpr-compliance {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

ul {
    padding-left: 25px;
}

li {
    margin: 8px 0;
    position: relative;
}

li::marker {
    color: #3498db;
}

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

footer {
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(257, 56%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: hsl(257, 56%, 61%);
    transform: translateX(5px);
}

.contact-info {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.contact-info strong {
    color: hsl(257, 56%, 61%);
}

.contact-info a {
    color: hsl(257, 56%, 61%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    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: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(257, 56%, 61%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(257, 56%, 36%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(257, 56%, 61%);
    color: hsl(257, 56%, 61%);
}

.cookie-btn-secondary:hover {
    background: hsl(257, 56%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 120px;
    }
}

:root {
            --primary-color: hsl(257, 56%, 36%);
            --secondary-color: hsl(257, 56%, 21%);
            --accent-color: hsl(257, 56%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            margin: 0 8px;
        }
        
        .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: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

.contact-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 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: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

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

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.form-label {
    font-weight: 600;
    color: hsl(257, 56%, 21%);
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid hsl(257, 56%, 85%);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(257, 56%, 21%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(257, 56%, 61%);
    box-shadow: 0 0 0 3px rgba(150, 100, 200, 0.1);
    transform: translateY(-2px);
}

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

.btn-submit {
    background: linear-gradient(135deg, hsl(257, 56%, 61%) 0%, hsl(257, 56%, 36%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(150, 100, 200, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(150, 100, 200, 0.4);
    background: linear-gradient(135deg, hsl(257, 56%, 65%) 0%, hsl(257, 56%, 40%) 100%);
}

.contact-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-info p {
    color: hsl(257, 56%, 85%);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.consultation-process {
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border-left: 4px solid hsl(257, 56%, 61%);
}

.step-number {
    background: hsl(257, 56%, 61%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
}

.working-hours {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.working-hours h4 {
    color: hsl(257, 56%, 61%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hours-list {
    color: hsl(257, 56%, 85%);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .btn-submit {
        padding: 15px 30px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(257, 56%, 61%);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, hsl(257, 56%, 61%) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: translateX(-50%);
}

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

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

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

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 2rem;
    position: relative;
}

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

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.1);
}

.timeline-image {
    flex: 1;
    margin: 0 2rem;
}

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

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

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(257, 56%, 61%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 20px hsl(257, 56%, 61%);
}

.content-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(257, 56%, 61%);
    margin-bottom: 1rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.mission-values {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-icon {
    font-size: 3rem;
    color: hsl(257, 56%, 61%);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(257, 56%, 61%);
    margin-bottom: 0.5rem;
}

.value-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 60px;
    }
    
    .timeline-content {
        margin: 0 0 1rem 0;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-image {
        margin: 0;
        width: 100%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mission-values {
        padding: 2rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(257, 56%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: hsl(257, 56%, 61%);
    transform: translateX(5px);
}

.contact-info {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.contact-info strong {
    color: hsl(257, 56%, 61%);
}

.contact-info a {
    color: hsl(257, 56%, 61%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    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: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(257, 56%, 61%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(257, 56%, 36%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(257, 56%, 61%);
    color: hsl(257, 56%, 61%);
}

.cookie-btn-secondary:hover {
    background: hsl(257, 56%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 120px;
    }
}

:root {
            --primary-color: hsl(257, 56%, 36%);
            --secondary-color: hsl(257, 56%, 21%);
            --accent-color: hsl(257, 56%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            margin: 0 8px;
        }
        
        .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: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

.services-section {
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(257, 56%, 61%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(257, 56%, 61%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(257, 56%, 36%), hsl(257, 56%, 61%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(257, 56%, 61%), hsl(257, 56%, 36%));
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(257, 56%, 21%);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(257, 56%, 36%);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-conditions {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    position: relative;
    z-index: 2;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.newsletter-subtitle {
    color: hsl(257, 56%, 85%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    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);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: hsl(257, 56%, 21%);
}

.form-control:focus {
    background: white;
    border-color: hsl(257, 56%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(155, 129, 203, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(257, 56%, 50%);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(257, 56%, 61%) 0%, hsl(257, 56%, 71%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(155, 129, 203, 0.4);
    background: linear-gradient(45deg, hsl(257, 56%, 71%) 0%, hsl(257, 56%, 81%) 100%);
}

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

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

.benefits-list li {
    color: hsl(257, 56%, 90%);
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(257, 56%, 61%);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-text {
    color: hsl(257, 56%, 75%);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .subscribe-btn {
        padding: 12px 30px;
    }
}

@media (max-width: 576px) {
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, hsl(257, 56%, 61%) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, hsl(257, 56%, 61%) 0%, transparent 40%);
    opacity: 0.1;
    pointer-events: none;
}

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

.testimonials-subtitle {
    color: hsl(257, 56%, 85%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(257, 56%, 21%);
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-top: 1rem;
}

.testimonial-author {
    font-weight: 700;
    color: hsl(257, 56%, 36%);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.testimonial-location {
    color: hsl(257, 56%, 61%);
    font-size: 0.95rem;
    font-weight: 500;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(257, 56%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: hsl(257, 56%, 61%);
    transform: translateX(5px);
}

.contact-info {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.contact-info strong {
    color: hsl(257, 56%, 61%);
}

.contact-info a {
    color: hsl(257, 56%, 61%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    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: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(257, 56%, 61%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(257, 56%, 36%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(257, 56%, 61%);
    color: hsl(257, 56%, 61%);
}

.cookie-btn-secondary:hover {
    background: hsl(257, 56%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 120px;
    }
}

:root {
            --primary-color: hsl(257, 56%, 36%);
            --secondary-color: hsl(257, 56%, 21%);
            --accent-color: hsl(257, 56%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            margin: 0 8px;
        }
        
        .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: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

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

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

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

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

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

.section-title {
    font-size: 1.6em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.important-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

footer {
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(257, 56%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: hsl(257, 56%, 61%);
    transform: translateX(5px);
}

.contact-info {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.contact-info strong {
    color: hsl(257, 56%, 61%);
}

.contact-info a {
    color: hsl(257, 56%, 61%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    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: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(257, 56%, 61%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(257, 56%, 36%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(257, 56%, 61%);
    color: hsl(257, 56%, 61%);
}

.cookie-btn-secondary:hover {
    background: hsl(257, 56%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 120px;
    }
}

:root {
            --primary-color: hsl(257, 56%, 36%);
            --secondary-color: hsl(257, 56%, 21%);
            --accent-color: hsl(257, 56%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            margin: 0 8px;
        }
        
        .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: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

.faq-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-title p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-accordion {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: white;
    border: none;
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(257, 56%, 21%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
}

.faq-question:hover {
    background: hsl(257, 56%, 96%);
    color: hsl(257, 56%, 36%);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(257, 56%, 61%);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: hsl(257, 56%, 98%);
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: hsl(257, 56%, 21%);
    line-height: 1.6;
    font-size: 1rem;
}

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

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

.about-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(257, 56%, 61%);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, hsl(257, 56%, 61%) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: translateX(-50%);
}

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

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

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

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 2rem;
    position: relative;
}

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

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.1);
}

.timeline-image {
    flex: 1;
    margin: 0 2rem;
}

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

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

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(257, 56%, 61%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 20px hsl(257, 56%, 61%);
}

.content-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(257, 56%, 61%);
    margin-bottom: 1rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.mission-values {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-icon {
    font-size: 3rem;
    color: hsl(257, 56%, 61%);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(257, 56%, 61%);
    margin-bottom: 0.5rem;
}

.value-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 60px;
    }
    
    .timeline-content {
        margin: 0 0 1rem 0;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-image {
        margin: 0;
        width: 100%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mission-values {
        padding: 2rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.newsletter-subtitle {
    color: hsl(257, 56%, 85%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    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);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: hsl(257, 56%, 21%);
}

.form-control:focus {
    background: white;
    border-color: hsl(257, 56%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(155, 129, 203, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(257, 56%, 50%);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(257, 56%, 61%) 0%, hsl(257, 56%, 71%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(155, 129, 203, 0.4);
    background: linear-gradient(45deg, hsl(257, 56%, 71%) 0%, hsl(257, 56%, 81%) 100%);
}

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

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

.benefits-list li {
    color: hsl(257, 56%, 90%);
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(257, 56%, 61%);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-text {
    color: hsl(257, 56%, 75%);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .subscribe-btn {
        padding: 12px 30px;
    }
}

@media (max-width: 576px) {
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(257, 56%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: hsl(257, 56%, 61%);
    transform: translateX(5px);
}

.contact-info {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.contact-info strong {
    color: hsl(257, 56%, 61%);
}

.contact-info a {
    color: hsl(257, 56%, 61%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    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: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(257, 56%, 61%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(257, 56%, 36%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(257, 56%, 61%);
    color: hsl(257, 56%, 61%);
}

.cookie-btn-secondary:hover {
    background: hsl(257, 56%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 120px;
    }
}

:root {
            --primary-color: hsl(257, 56%, 36%);
            --secondary-color: hsl(257, 56%, 21%);
            --accent-color: hsl(257, 56%, 61%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            margin: 0 8px;
        }
        
        .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: none;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 15px;
                border-radius: 10px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

.hero-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 100%);
    padding: 80px 0;
    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 h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content h2 {
    font-size: 1.5rem;
    color: hsl(257, 56%, 61%);
    margin-bottom: 2rem;
    font-weight: 300;
}

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

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

.hero-features li {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.hero-features li i {
    color: hsl(257, 56%, 61%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: hsl(257, 56%, 61%);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover {
    background: hsl(257, 56%, 51%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

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

.btn-secondary-custom:hover {
    background: hsl(257, 56%, 61%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        text-align: center;
        justify-content: center;
    }
    
    .hero-image {
        transform: none;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

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

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(257, 56%, 61%);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(257, 56%, 61%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(257, 56%, 36%), hsl(257, 56%, 61%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(257, 56%, 61%), hsl(257, 56%, 36%));
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(257, 56%, 21%);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(257, 56%, 36%);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-conditions {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    position: relative;
    z-index: 2;
}

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

.faq-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-title p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-accordion {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: white;
    border: none;
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(257, 56%, 21%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
}

.faq-question:hover {
    background: hsl(257, 56%, 96%);
    color: hsl(257, 56%, 36%);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(257, 56%, 61%);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: hsl(257, 56%, 98%);
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: hsl(257, 56%, 21%);
    line-height: 1.6;
    font-size: 1rem;
}

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

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

.about-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(257, 56%, 61%);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, hsl(257, 56%, 61%) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: translateX(-50%);
}

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

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

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

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 2rem;
    position: relative;
}

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

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.1);
}

.timeline-image {
    flex: 1;
    margin: 0 2rem;
}

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

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

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(257, 56%, 61%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 20px hsl(257, 56%, 61%);
}

.content-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(257, 56%, 61%);
    margin-bottom: 1rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.mission-values {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-icon {
    font-size: 3rem;
    color: hsl(257, 56%, 61%);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(257, 56%, 61%);
    margin-bottom: 0.5rem;
}

.value-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 60px;
    }
    
    .timeline-content {
        margin: 0 0 1rem 0;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-image {
        margin: 0;
        width: 100%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .mission-values {
        padding: 2rem;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 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: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

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

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.form-label {
    font-weight: 600;
    color: hsl(257, 56%, 21%);
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid hsl(257, 56%, 85%);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(257, 56%, 21%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(257, 56%, 61%);
    box-shadow: 0 0 0 3px rgba(150, 100, 200, 0.1);
    transform: translateY(-2px);
}

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

.btn-submit {
    background: linear-gradient(135deg, hsl(257, 56%, 61%) 0%, hsl(257, 56%, 36%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(150, 100, 200, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(150, 100, 200, 0.4);
    background: linear-gradient(135deg, hsl(257, 56%, 65%) 0%, hsl(257, 56%, 40%) 100%);
}

.contact-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-info p {
    color: hsl(257, 56%, 85%);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.consultation-process {
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border-left: 4px solid hsl(257, 56%, 61%);
}

.step-number {
    background: hsl(257, 56%, 61%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
}

.working-hours {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.working-hours h4 {
    color: hsl(257, 56%, 61%);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hours-list {
    color: hsl(257, 56%, 85%);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .btn-submit {
        padding: 15px 30px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 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.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    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(257, 56%, 61%);
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(257, 56%, 61%), hsl(257, 56%, 36%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

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

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

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .zigzag-left .advantage-card,
    .zigzag-right .advantage-card {
        margin-left: auto;
        margin-right: auto;
    }
}

.advantage-number {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: hsl(257, 56%, 61%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.newsletter-subtitle {
    color: hsl(257, 56%, 85%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    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);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: hsl(257, 56%, 21%);
}

.form-control:focus {
    background: white;
    border-color: hsl(257, 56%, 61%);
    box-shadow: 0 0 0 0.2rem rgba(155, 129, 203, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(257, 56%, 50%);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(257, 56%, 61%) 0%, hsl(257, 56%, 71%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(155, 129, 203, 0.4);
    background: linear-gradient(45deg, hsl(257, 56%, 71%) 0%, hsl(257, 56%, 81%) 100%);
}

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

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

.benefits-list li {
    color: hsl(257, 56%, 90%);
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(257, 56%, 61%);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-text {
    color: hsl(257, 56%, 75%);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .subscribe-btn {
        padding: 12px 30px;
    }
}

@media (max-width: 576px) {
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

.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(257, 56%, 61%);
    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: 40px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    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);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(257, 56%, 61%);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(257, 56%, 61%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

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

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

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

.highlight-accent {
    color: hsl(257, 56%, 61%);
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(257, 56%, 36%) 0%, hsl(257, 56%, 21%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, hsl(257, 56%, 61%) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, hsl(257, 56%, 61%) 0%, transparent 40%);
    opacity: 0.1;
    pointer-events: none;
}

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

.testimonials-subtitle {
    color: hsl(257, 56%, 85%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(257, 56%, 21%);
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-top: 1rem;
}

.testimonial-author {
    font-weight: 700;
    color: hsl(257, 56%, 36%);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.testimonial-location {
    color: hsl(257, 56%, 61%);
    font-size: 0.95rem;
    font-weight: 500;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-section h5 {
    color: hsl(257, 56%, 61%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: hsl(257, 56%, 61%);
    transform: translateX(5px);
}

.contact-info {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.contact-info strong {
    color: hsl(257, 56%, 61%);
}

.contact-info a {
    color: hsl(257, 56%, 61%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(257, 56%, 21%) 0%, hsl(257, 56%, 36%) 100%);
    color: #ffffff;
    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: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(257, 56%, 61%);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(257, 56%, 36%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(257, 56%, 61%);
    color: hsl(257, 56%, 61%);
}

.cookie-btn-secondary:hover {
    background: hsl(257, 56%, 61%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-notice .row {
        text-align: center;
    }
    
    .cookie-btn {
        margin: 5px;
        width: 120px;
    }
}