:root {
    --primary-purple: #5A00E0; /* насичений неоновий фіолетовий */
    --secondary-purple: #00E5FF; /* яскравий бірюзовий акцент */
    --dark-purple: #0B0C10; /* дуже темний, майже чорний фон */
    --light-purple: #C4B5FD; /* м’який світло-лавандовий */
    --hover-purple: #2F80ED; /* неоновий синій при наведенні */
    --accent-purple: #6EE7B7; /* м’ятно-салатовий акцент */
    --text-dark: #1d2c3f; /* світло-сірий текст на темному фоні */
    --text-light: #6f7885; /* м’який блакитно-сірий */
    --background-light: #304168; /* глибокий графітовий фон */
    --white: #FFFFFF;
    --gradient-purple: linear-gradient(135deg, #5A00E0, #00E5FF);
    --transition-standard: all 0.3s ease-in-out;
    --box-shadow-standard: 0 4px 10px rgba(0, 229, 255, 0.15);
    --box-shadow-hover: 0 10px 25px rgba(90, 0, 224, 0.3);
}



/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-purple);
}

.display-1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.display-2 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-light);
}

/* Navigation Styles */
.navbar {
    padding: 1rem 0;
    transition: var(--transition-standard);
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar.scrolled {
    box-shadow: var(--box-shadow-standard);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-purple) !important;
    transition: var(--transition-standard);
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: var(--transition-standard);
}

.nav-link:hover {
    color: var(--primary-purple) !important;
    background-color: var(--background-light);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-purple);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.2s forwards;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition-standard);
    border: 1px solid rgba(107, 70, 193, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--background-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
    transition: var(--transition-standard);
}

.feature-card:hover .feature-icon {
    background: var(--primary-purple);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background: var(--background-light);
}

.methodology-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-standard);
}

.methodology-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-standard);
}

.methodology-card:hover::before {
    transform: scaleX(1);
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    position: relative;
}

.timeline-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 2rem;
    position: relative;
    border-left: 4px solid var(--primary-purple);
    transition: var(--transition-standard);
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow-hover);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-purple);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* Success Stories Section */
.success-stories {
    background: var(--background-light);
    padding: 100px 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin: 1rem;
    position: relative;
    transition: var(--transition-standard);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent-purple);
    position: absolute;
    top: -20px;
    right: 20px;
    opacity: 0.2;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-card {
    background: var(--background-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-standard);
    color: #fff;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-purple);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-link {
    color: var(--accent-purple);
    text-decoration: none;
    transition: var(--transition-standard);
}

.footer-link:hover {
    color: var(--white);
    text-decoration: none;
    transform: translateX(5px);
}

/* Cookie Banner */
.cookie-banner {
    background: rgba(68, 51, 122, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-button {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: var(--transition-standard);
}

.cookie-button:hover {
    background: var(--hover-purple);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .display-1 {
        font-size: 3.5rem;
    }

    .display-2 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 16px;
        box-shadow: var(--box-shadow-standard);
    }
}

@media (max-width: 767.98px) {
    .display-1 {
        font-size: 2.5rem;
    }

    .display-2 {
        font-size: 2rem;
    }

    .timeline-item {
        margin-left: 0;
    }

    .methodology-card,
    .feature-card,
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

/* Utility Classes */
.shadow-custom {
    box-shadow: var(--box-shadow-standard);
}

.text-purple {
    color: var(--primary-purple);
}

.bg-purple-gradient {
    background: var(--gradient-purple);
}

.hover-scale {
    transition: var(--transition-standard);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.rounded-custom {
    border-radius: 16px;
}

.border-purple {
    border-color: var(--primary-purple);
}

/* Дополнительные декоративные элементы и улучшенные стили */

/* Декоративные элементы для карточек услуг */
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-standard);
    border: 1px solid rgba(107, 70, 193, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    transition: all 0.6s ease;
    transform: translate3d(-100%, -100%, 0) rotate(-45deg);
}

.service-card:hover::before {
    opacity: 0.05;
    transform: translate3d(-30%, -30%, 0) rotate(-45deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--background-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 2px dashed var(--primary-purple);
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-purple);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon i {
    color: var(--white);
    transform: scale(1.1);
}

/* Стилизация карточек с отзывами */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 70, 193, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--accent-purple);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Декоративные элементы для секций */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-purple);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 70px;
    width: 30px;
    height: 4px;
    background: var(--accent-purple);
    border-radius: 2px;
}

/* Декоративные анимации */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Стилизация иконок в шапке */
.header-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--background-light);
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.header-icon i {
    color: var(--primary-purple);
    font-size: 1.2rem;
}

.header-icon:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.header-icon:hover i {
    color: var(--white);
}

/* Декоративные элементы фона */
.bg-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--accent-purple), transparent);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
}

.bg-decoration.top-right {
    top: -150px;
    right: -150px;
}

.bg-decoration.bottom-left {
    bottom: -150px;
    left: -150px;
}

/* Улучшенные стили для кнопок */
.btn-custom {
    position: relative;
    padding: 12px 30px;
    border-radius: 12px;
    background: var(--gradient-purple);
    color: var(--white);
    font-weight: 500;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(107, 70, 193, 0.2);
}

.btn-custom:hover::before {
    transform: translateX(100%);
    transition: all 0.6s ease;
}

/* Дополнительные утилиты */
.hover-float {
    animation: float 3s ease-in-out infinite;
}

.gradient-text {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient {
    border: double 2px transparent;
    background-image: linear-gradient(white, white), var(--gradient-purple);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

/* Дополнительные декоративные элементы и улучшенные стили */

/* Декоративные элементы для карточек услуг */
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-standard);
    border: 1px solid rgba(107, 70, 193, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    transition: all 0.6s ease;
    transform: translate3d(-100%, -100%, 0) rotate(-45deg);
}

.service-card:hover::before {
    opacity: 0.05;
    transform: translate3d(-30%, -30%, 0) rotate(-45deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--background-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 2px dashed var(--primary-purple);
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-purple);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon i {
    color: var(--white);
    transform: scale(1.1);
}

/* Стилизация карточек с отзывами */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 70, 193, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: var(--accent-purple);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Декоративные элементы для секций */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-purple);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 70px;
    width: 30px;
    height: 4px;
    background: var(--accent-purple);
    border-radius: 2px;
}

/* Декоративные анимации */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Стилизация иконок в шапке */
.header-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--background-light);
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.header-icon i {
    color: var(--primary-purple);
    font-size: 1.2rem;
}

.header-icon:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.header-icon:hover i {
    color: var(--white);
}

/* Декоративные элементы фона */
.bg-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--accent-purple), transparent);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
}

.bg-decoration.top-right {
    top: -150px;
    right: -150px;
}

.bg-decoration.bottom-left {
    bottom: -150px;
    left: -150px;
}

/* Улучшенные стили для кнопок */
.btn-custom {
    position: relative;
    padding: 12px 30px;
    border-radius: 12px;
    background: var(--gradient-purple);
    color: var(--white);
    font-weight: 500;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(107, 70, 193, 0.2);
}

.btn-custom:hover::before {
    transform: translateX(100%);
    transition: all 0.6s ease;
}

/* Дополнительные утилиты */
.hover-float {
    animation: float 3s ease-in-out infinite;
}

.gradient-text {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient {
    border: double 2px transparent;
    background-image: linear-gradient(white, white), var(--gradient-purple);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

/* Contact Form Styles */
.contact-form-section {
    background: var(--background-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.25rem rgba(107, 70, 193, 0.1);
    background: var(--white);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    background: var(--gradient-purple);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(107, 70, 193, 0.2);
}

.submit-button:hover::before {
    left: 100%;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 70, 193, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(107, 70, 193, 0.1);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--background-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-purple);
    font-size: 1.5rem;
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-info-text {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Form validation styles */
.form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Animation for form success */
@keyframes formSuccess {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success {
    animation: formSuccess 0.5s ease forwards;
}

/* Cookie Disclaimer Styles */
.cookie-disclaimer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 19, 56, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-disclaimer.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-icon {
    font-size: 1.5rem;
    color: #B794F4;
}

.cookie-button {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Special styles for thank you page */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

.success-icon {
    font-size: 5rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease-out forwards;
}

.thank-you-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.thank-you-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }

    .cookie-button {
        width: 100%;
        justify-content: center;
    }

    .thank-you-title {
        font-size: 2rem;
    }
}