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

.about-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 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;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(45deg, white, hsl(271, 65%, 55%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.2;
}

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

.story-title {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(271, 65%, 55%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.story-title::before {
    content: '✦';
    margin-right: 15px;
    font-size: 1.5rem;
}

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

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

.mission-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: hsl(271, 65%, 55%);
}

.mission-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-image-secondary {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin: 40px 0;
}

.highlight-text {
    color: hsl(271, 65%, 55%);
    font-weight: 600;
}

.company-stats {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    margin: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: hsl(271, 65%, 55%);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .story-block {
        padding: 25px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-stats {
        flex-direction: column;
        align-items: center;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 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="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    color: white;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(271, 65%, 55%);
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.2rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(271, 65%, 55%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(271, 65%, 55%), hsl(271, 65%, 30%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.advantage-icon i {
    font-size: 30px;
    color: white;
}

.advantage-title {
    color: hsl(271, 65%, 30%);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

.zigzag-left {
    animation: slideInLeft 0.8s ease-out;
}

.zigzag-right {
    animation: slideInRight 0.8s ease-out;
}

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .advantage-card {
        padding: 25px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 25px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 100%);
    padding: 80px 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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.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: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(271, 65%, 55%);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(271, 65%, 55%);
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(271, 65%, 85%);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: hsl(271, 65%, 75%);
    font-weight: 300;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

.row {
    position: relative;
    z-index: 2;
}

footer {
        background: linear-gradient(135deg, hsl(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }
    
    footer h5 {
        color: hsl(271, 65%, 55%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: hsl(271, 65%, 55%);
        border-radius: 2px;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        padding: 0.3rem 0;
    }
    
    footer a:hover {
        color: hsl(271, 65%, 55%);
        transform: translateX(5px);
    }
    
    footer .company-description {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    footer .contact-info {
        color: rgba(255, 255, 255, 0.9);
    }
    
    footer .contact-info i {
        color: hsl(271, 65%, 55%);
        margin-right: 0.5rem;
        width: 20px;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        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(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 1.5rem 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 .btn-accept {
        background: hsl(271, 65%, 55%);
        border: none;
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(271, 65%, 45%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(271, 65%, 55%);
        color: hsl(271, 65%, 55%);
        padding: 0.5rem 1.2rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(271, 65%, 55%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .btn-group {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            width: 100%;
            text-align: center;
        }
    }

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

.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, #f8f9fa 0%, #e9ecef 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 #007bff;
}

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

.privacy-header .subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.privacy-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.privacy-section h2::before {
    content: "▶";
    color: #007bff;
    margin-right: 10px;
    font-size: 1.2rem;
}

.privacy-section h3 {
    font-size: 1.4rem;
    color: #495057;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

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

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

.privacy-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
}

.privacy-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #2196f3;
    font-weight: 500;
}

.contact-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-section h2 {
    color: white;
    margin-bottom: 20px;
}

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

footer {
        background: linear-gradient(135deg, hsl(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }
    
    footer h5 {
        color: hsl(271, 65%, 55%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: hsl(271, 65%, 55%);
        border-radius: 2px;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        padding: 0.3rem 0;
    }
    
    footer a:hover {
        color: hsl(271, 65%, 55%);
        transform: translateX(5px);
    }
    
    footer .company-description {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    footer .contact-info {
        color: rgba(255, 255, 255, 0.9);
    }
    
    footer .contact-info i {
        color: hsl(271, 65%, 55%);
        margin-right: 0.5rem;
        width: 20px;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        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(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 1.5rem 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 .btn-accept {
        background: hsl(271, 65%, 55%);
        border: none;
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(271, 65%, 45%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(271, 65%, 55%);
        color: hsl(271, 65%, 55%);
        padding: 0.5rem 1.2rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(271, 65%, 55%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .btn-group {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            width: 100%;
            text-align: center;
        }
    }

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

.cookies-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);
}

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

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

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

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

.cookies-policy ul {
    background: rgba(255,255,255,0.9);
    padding: 20px 25px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.cookies-policy li::before {
    content: "🔹";
    position: absolute;
    left: -15px;
    color: #3498db;
}

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

.consent-notice {
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.cookie-type-card {
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #ecf0f1;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

footer {
        background: linear-gradient(135deg, hsl(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }
    
    footer h5 {
        color: hsl(271, 65%, 55%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: hsl(271, 65%, 55%);
        border-radius: 2px;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        padding: 0.3rem 0;
    }
    
    footer a:hover {
        color: hsl(271, 65%, 55%);
        transform: translateX(5px);
    }
    
    footer .company-description {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    footer .contact-info {
        color: rgba(255, 255, 255, 0.9);
    }
    
    footer .contact-info i {
        color: hsl(271, 65%, 55%);
        margin-right: 0.5rem;
        width: 20px;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        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(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 1.5rem 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 .btn-accept {
        background: hsl(271, 65%, 55%);
        border: none;
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(271, 65%, 45%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(271, 65%, 55%);
        color: hsl(271, 65%, 55%);
        padding: 0.5rem 1.2rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(271, 65%, 55%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .btn-group {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            width: 100%;
            text-align: center;
        }
    }

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

.contact-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.contact-form {
    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);
}

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

.form-label {
    color: hsl(271, 65%, 30%);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 1rem;
}

.form-control {
    border: 2px solid hsl(271, 65%, 85%);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(271, 65%, 20%);
}

.form-control:focus {
    border-color: hsl(271, 65%, 55%);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 139, 0.25);
    outline: none;
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(271, 65%, 55%) 0%, hsl(271, 65%, 45%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(139, 69, 139, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(139, 69, 139, 0.4);
    background: linear-gradient(135deg, hsl(271, 65%, 60%) 0%, hsl(271, 65%, 50%) 100%);
}

.contact-info {
    color: white;
    padding: 30px 0;
}

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

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

.info-title {
    color: hsl(271, 65%, 85%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.working-hours {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.hours-title {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.hours-list {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .info-card {
        padding: 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 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;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(45deg, white, hsl(271, 65%, 55%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.2;
}

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

.story-title {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(271, 65%, 55%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.story-title::before {
    content: '✦';
    margin-right: 15px;
    font-size: 1.5rem;
}

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

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

.mission-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: hsl(271, 65%, 55%);
}

.mission-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-image-secondary {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin: 40px 0;
}

.highlight-text {
    color: hsl(271, 65%, 55%);
    font-weight: 600;
}

.company-stats {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    margin: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: hsl(271, 65%, 55%);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .story-block {
        padding: 25px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-stats {
        flex-direction: column;
        align-items: center;
    }
}

footer {
        background: linear-gradient(135deg, hsl(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }
    
    footer h5 {
        color: hsl(271, 65%, 55%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: hsl(271, 65%, 55%);
        border-radius: 2px;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        padding: 0.3rem 0;
    }
    
    footer a:hover {
        color: hsl(271, 65%, 55%);
        transform: translateX(5px);
    }
    
    footer .company-description {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    footer .contact-info {
        color: rgba(255, 255, 255, 0.9);
    }
    
    footer .contact-info i {
        color: hsl(271, 65%, 55%);
        margin-right: 0.5rem;
        width: 20px;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        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(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 1.5rem 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 .btn-accept {
        background: hsl(271, 65%, 55%);
        border: none;
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(271, 65%, 45%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(271, 65%, 55%);
        color: hsl(271, 65%, 55%);
        padding: 0.5rem 1.2rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(271, 65%, 55%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .btn-group {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            width: 100%;
            text-align: center;
        }
    }

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

.services-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 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>');
    opacity: 0.5;
}

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

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

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

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(271, 65%, 55%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: hsl(271, 65%, 55%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: hsl(271, 65%, 40%);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(271, 65%, 15%);
    margin-bottom: 15px;
    line-height: 1.3;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: hsl(271, 65%, 30%);
    margin-bottom: 15px;
}

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

.newsletter-subtitle {
    color: hsl(271, 65%, 15%);
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0.8;
    line-height: 1.6;
}

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

.benefits-list li {
    color: hsl(271, 65%, 15%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

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

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid hsl(271, 65%, 85%);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(271, 65%, 15%);
}

.email-input:focus {
    outline: none;
    border-color: hsl(271, 65%, 55%);
    box-shadow: 0 0 0 3px rgba(154, 85, 180, 0.2);
}

.subscribe-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, hsl(271, 65%, 55%) 0%, hsl(271, 65%, 45%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 150px;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(271, 65%, 45%) 0%, hsl(271, 65%, 35%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(154, 85, 180, 0.4);
}

.privacy-note {
    font-size: 0.85rem;
    color: hsl(271, 65%, 15%);
    text-align: center;
    opacity: 0.7;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 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(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

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

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    border-color: hsl(271, 65%, 55%);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(271, 65%, 55%);
    font-weight: bold;
    line-height: 1;
}

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

.client-info {
    border-top: 2px solid hsl(271, 65%, 55%);
    padding-top: 15px;
}

.client-name {
    font-weight: 700;
    color: hsl(271, 65%, 30%);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-location {
    color: #666;
    font-size: 0.95rem;
}

.testimonial-card:nth-child(3n+1) {
    grid-row: span 2;
}

.testimonial-card:nth-child(4n+2) {
    transform: translateY(20px);
}

.testimonial-card:nth-child(5n+3) {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(271, 65%, 55%, 0.05) 100%);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card:nth-child(4n+2) {
        transform: none;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

footer {
        background: linear-gradient(135deg, hsl(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }
    
    footer h5 {
        color: hsl(271, 65%, 55%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: hsl(271, 65%, 55%);
        border-radius: 2px;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        padding: 0.3rem 0;
    }
    
    footer a:hover {
        color: hsl(271, 65%, 55%);
        transform: translateX(5px);
    }
    
    footer .company-description {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    footer .contact-info {
        color: rgba(255, 255, 255, 0.9);
    }
    
    footer .contact-info i {
        color: hsl(271, 65%, 55%);
        margin-right: 0.5rem;
        width: 20px;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        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(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 1.5rem 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 .btn-accept {
        background: hsl(271, 65%, 55%);
        border: none;
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(271, 65%, 45%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(271, 65%, 55%);
        color: hsl(271, 65%, 55%);
        padding: 0.5rem 1.2rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(271, 65%, 55%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .btn-group {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            width: 100%;
            text-align: center;
        }
    }

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

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

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

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

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

.terms-section {
    background: white;
    margin-bottom: 30px;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #007bff;
    transition: transform 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.section-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

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

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

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

.highlight-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-weight: 500;
}

.important-notice {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #dc3545;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    color: #721c24;
    font-weight: 600;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

footer {
        background: linear-gradient(135deg, hsl(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }
    
    footer h5 {
        color: hsl(271, 65%, 55%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: hsl(271, 65%, 55%);
        border-radius: 2px;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        padding: 0.3rem 0;
    }
    
    footer a:hover {
        color: hsl(271, 65%, 55%);
        transform: translateX(5px);
    }
    
    footer .company-description {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    footer .contact-info {
        color: rgba(255, 255, 255, 0.9);
    }
    
    footer .contact-info i {
        color: hsl(271, 65%, 55%);
        margin-right: 0.5rem;
        width: 20px;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        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(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 1.5rem 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 .btn-accept {
        background: hsl(271, 65%, 55%);
        border: none;
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(271, 65%, 45%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(271, 65%, 55%);
        color: hsl(271, 65%, 55%);
        padding: 0.5rem 1.2rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(271, 65%, 55%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .btn-group {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            width: 100%;
            text-align: center;
        }
    }

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

.faq-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="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;
}

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

.faq-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);
}

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

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.faq-tab {
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.faq-tab:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.faq-tab.active {
    background: hsl(271, 65%, 55%);
    border-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.faq-content {
    display: none;
}

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

.faq-item {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-question {
    background: linear-gradient(45deg, hsl(271, 65%, 55%), hsl(271, 65%, 45%));
    color: white;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

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

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
    color: hsl(271, 65%, 20%);
}

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

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tab {
        width: 200px;
        text-align: center;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 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;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(45deg, white, hsl(271, 65%, 55%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.2;
}

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

.story-title {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(271, 65%, 55%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.story-title::before {
    content: '✦';
    margin-right: 15px;
    font-size: 1.5rem;
}

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

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

.mission-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: hsl(271, 65%, 55%);
}

.mission-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-image-secondary {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin: 40px 0;
}

.highlight-text {
    color: hsl(271, 65%, 55%);
    font-weight: 600;
}

.company-stats {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    margin: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: hsl(271, 65%, 55%);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .story-block {
        padding: 25px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-stats {
        flex-direction: column;
        align-items: center;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

.newsletter-subtitle {
    color: hsl(271, 65%, 15%);
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0.8;
    line-height: 1.6;
}

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

.benefits-list li {
    color: hsl(271, 65%, 15%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

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

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid hsl(271, 65%, 85%);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(271, 65%, 15%);
}

.email-input:focus {
    outline: none;
    border-color: hsl(271, 65%, 55%);
    box-shadow: 0 0 0 3px rgba(154, 85, 180, 0.2);
}

.subscribe-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, hsl(271, 65%, 55%) 0%, hsl(271, 65%, 45%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 150px;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(271, 65%, 45%) 0%, hsl(271, 65%, 35%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(154, 85, 180, 0.4);
}

.privacy-note {
    font-size: 0.85rem;
    color: hsl(271, 65%, 15%);
    text-align: center;
    opacity: 0.7;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
}

footer {
        background: linear-gradient(135deg, hsl(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }
    
    footer h5 {
        color: hsl(271, 65%, 55%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: hsl(271, 65%, 55%);
        border-radius: 2px;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        padding: 0.3rem 0;
    }
    
    footer a:hover {
        color: hsl(271, 65%, 55%);
        transform: translateX(5px);
    }
    
    footer .company-description {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    footer .contact-info {
        color: rgba(255, 255, 255, 0.9);
    }
    
    footer .contact-info i {
        color: hsl(271, 65%, 55%);
        margin-right: 0.5rem;
        width: 20px;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        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(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 1.5rem 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 .btn-accept {
        background: hsl(271, 65%, 55%);
        border: none;
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(271, 65%, 45%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(271, 65%, 55%);
        color: hsl(271, 65%, 55%);
        padding: 0.5rem 1.2rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(271, 65%, 55%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .btn-group {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            width: 100%;
            text-align: center;
        }
    }

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

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

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

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

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

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

.hero-title {
    color: white;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
    color: hsl(271, 65%, 85%);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    color: hsl(271, 65%, 90%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: left;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-features li {
    color: hsl(271, 65%, 90%);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.hero-features li i {
    color: hsl(271, 65%, 55%);
    font-size: 1.3rem;
    margin-right: 1rem;
    min-width: 25px;
}

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

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

.btn-hero-primary:hover {
    background: hsl(271, 65%, 45%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

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

.btn-hero-secondary:hover {
    background: hsl(271, 65%, 55%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-container {
        padding: 1.5rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        display: block;
        margin: 1rem auto;
        width: 100%;
        max-width: 300px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 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.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

.newsletter-subtitle {
    color: hsl(271, 65%, 15%);
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0.8;
    line-height: 1.6;
}

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

.benefits-list li {
    color: hsl(271, 65%, 15%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

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

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid hsl(271, 65%, 85%);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(271, 65%, 15%);
}

.email-input:focus {
    outline: none;
    border-color: hsl(271, 65%, 55%);
    box-shadow: 0 0 0 3px rgba(154, 85, 180, 0.2);
}

.subscribe-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, hsl(271, 65%, 55%) 0%, hsl(271, 65%, 45%) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 150px;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(271, 65%, 45%) 0%, hsl(271, 65%, 35%) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(154, 85, 180, 0.4);
}

.privacy-note {
    font-size: 0.85rem;
    color: hsl(271, 65%, 15%);
    text-align: center;
    opacity: 0.7;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="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;
}

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

.faq-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);
}

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

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.faq-tab {
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.faq-tab:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.faq-tab.active {
    background: hsl(271, 65%, 55%);
    border-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.faq-content {
    display: none;
}

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

.faq-item {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-question {
    background: linear-gradient(45deg, hsl(271, 65%, 55%), hsl(271, 65%, 45%));
    color: white;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

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

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
    color: hsl(271, 65%, 20%);
}

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

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tab {
        width: 200px;
        text-align: center;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 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>');
    opacity: 0.5;
}

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

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

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

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(271, 65%, 55%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: hsl(271, 65%, 55%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: hsl(271, 65%, 40%);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(271, 65%, 15%);
    margin-bottom: 15px;
    line-height: 1.3;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: hsl(271, 65%, 30%);
    margin-bottom: 15px;
}

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

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 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(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

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

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    border-color: hsl(271, 65%, 55%);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(271, 65%, 55%);
    font-weight: bold;
    line-height: 1;
}

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

.client-info {
    border-top: 2px solid hsl(271, 65%, 55%);
    padding-top: 15px;
}

.client-name {
    font-weight: 700;
    color: hsl(271, 65%, 30%);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-location {
    color: #666;
    font-size: 0.95rem;
}

.testimonial-card:nth-child(3n+1) {
    grid-row: span 2;
}

.testimonial-card:nth-child(4n+2) {
    transform: translateY(20px);
}

.testimonial-card:nth-child(5n+3) {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(271, 65%, 55%, 0.05) 100%);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card:nth-child(4n+2) {
        transform: none;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 100%);
    padding: 80px 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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.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: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(271, 65%, 55%);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(271, 65%, 55%);
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(271, 65%, 85%);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: hsl(271, 65%, 75%);
    font-weight: 300;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

.row {
    position: relative;
    z-index: 2;
}

.advantages-section {
    background: linear-gradient(135deg, hsl(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 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="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    color: white;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(271, 65%, 55%);
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.2rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(271, 65%, 55%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(271, 65%, 55%), hsl(271, 65%, 30%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.advantage-icon i {
    font-size: 30px;
    color: white;
}

.advantage-title {
    color: hsl(271, 65%, 30%);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

.zigzag-left {
    animation: slideInLeft 0.8s ease-out;
}

.zigzag-right {
    animation: slideInRight 0.8s ease-out;
}

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .advantage-card {
        padding: 25px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 25px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 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;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(45deg, white, hsl(271, 65%, 55%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.2;
}

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

.story-title {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(271, 65%, 55%);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.story-title::before {
    content: '✦';
    margin-right: 15px;
    font-size: 1.5rem;
}

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

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

.mission-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: hsl(271, 65%, 55%);
}

.mission-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-image-secondary {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin: 40px 0;
}

.highlight-text {
    color: hsl(271, 65%, 55%);
    font-weight: 600;
}

.company-stats {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    margin: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: hsl(271, 65%, 55%);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 300px;
        margin-bottom: 40px;
    }
    
    .story-block {
        padding: 25px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-stats {
        flex-direction: column;
        align-items: center;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(271, 65%, 30%) 0%, hsl(271, 65%, 15%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.contact-form {
    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);
}

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

.form-label {
    color: hsl(271, 65%, 30%);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 1rem;
}

.form-control {
    border: 2px solid hsl(271, 65%, 85%);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(271, 65%, 20%);
}

.form-control:focus {
    border-color: hsl(271, 65%, 55%);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 139, 0.25);
    outline: none;
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(271, 65%, 55%) 0%, hsl(271, 65%, 45%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(139, 69, 139, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(139, 69, 139, 0.4);
    background: linear-gradient(135deg, hsl(271, 65%, 60%) 0%, hsl(271, 65%, 50%) 100%);
}

.contact-info {
    color: white;
    padding: 30px 0;
}

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

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

.info-title {
    color: hsl(271, 65%, 85%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.working-hours {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.hours-title {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.hours-list {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .info-card {
        padding: 20px;
    }
}

footer {
        background: linear-gradient(135deg, hsl(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 3rem 0 1rem;
        margin-top: auto;
    }
    
    footer h5 {
        color: hsl(271, 65%, 55%);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    footer h5::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: hsl(271, 65%, 55%);
        border-radius: 2px;
    }
    
    footer a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        padding: 0.3rem 0;
    }
    
    footer a:hover {
        color: hsl(271, 65%, 55%);
        transform: translateX(5px);
    }
    
    footer .company-description {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    footer .contact-info {
        color: rgba(255, 255, 255, 0.9);
    }
    
    footer .contact-info i {
        color: hsl(271, 65%, 55%);
        margin-right: 0.5rem;
        width: 20px;
    }
    
    footer .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        padding-top: 1.5rem;
        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(271, 65%, 15%) 0%, hsl(271, 65%, 30%) 100%);
        color: white;
        padding: 1.5rem 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 .btn-accept {
        background: hsl(271, 65%, 55%);
        border: none;
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .cookie-notice .btn-accept:hover {
        background: hsl(271, 65%, 45%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-notice .btn-learn {
        background: transparent;
        border: 2px solid hsl(271, 65%, 55%);
        color: hsl(271, 65%, 55%);
        padding: 0.5rem 1.2rem;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }
    
    .cookie-notice .btn-learn:hover {
        background: hsl(271, 65%, 55%);
        color: white;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .cookie-notice .btn-group {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .cookie-notice .btn-accept,
        .cookie-notice .btn-learn {
            width: 100%;
            text-align: center;
        }
    }