/* ============================================
   ГЛОБАЛЬНЫЕ СТИЛИ И ПЕРЕМЕННЫЕ
   ============================================ */

:root {
    --primary-purple: #6B46C1;
    --accent-gold: #F59E0B;
    --dark-cosmos: #1E1B4B;
    --light-lavender: #E9D5FF;
    --white: #FFFFFF;
    --text-gray: #4B5563;
    --success-green: #10B981;
    --shadow-purple: rgba(107, 70, 193, 0.2);
    --cosmic-gradient: linear-gradient(135deg, #6B46C1 0%, #9333EA 50%, #EC4899 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER И НАВИГАЦИЯ
   ============================================ */

.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow-purple);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: var(--cosmic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link:hover::after {
    width: 100%;
}

/* Мобильное меню (checkbox hack) */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 2px 0 10px var(--shadow-purple);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .menu-toggle:checked + .menu-icon + .main-nav {
        left: 0;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked + .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* ============================================
   HERO СЕКЦИЯ
   ============================================ */

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(107, 70, 193, 0.7), rgba(30, 27, 75, 0.8)), url('./img/K05QkU.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent);
    background-size: 200% 200%;
    animation: stars 20s linear infinite;
    opacity: 0.6;
}

@keyframes stars {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--cosmic-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-purple);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* ============================================
   ОБЩИЕ СЕКЦИИ
   ============================================ */

.section {
    padding: 80px 20px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-purple);
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   КАРТОЧКИ
   ============================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--white);
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow-purple);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-weight: bold;
}

.card-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.card-price {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: bold;
    margin-bottom: 20px;
}

.btn-card {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-purple);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-card:hover {
    background: var(--accent-gold);
    transform: scale(1.05);
}

/* ============================================
   СЕКЦИЯ О КОМПАНИИ
   ============================================ */

.about-section {
    background: var(--light-lavender);
}

/* ============================================
   СЕКЦИЯ УСЛУГ (3 ВИДА ГОРОСКОПОВ)
   ============================================ */

.services-section {
    background: var(--white);
}

/* ============================================
   КАК ЭТО РАБОТАЕТ
   ============================================ */

.how-it-works-section {
    background: var(--light-lavender);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--primary-purple);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--cosmic-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px var(--shadow-purple);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.step-title {
    font-size: 1.2rem;
    color: var(--primary-purple);
    font-weight: bold;
    margin-bottom: 10px;
}

.step-text {
    color: var(--text-gray);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .steps-container::before {
        display: none;
    }
}

/* ============================================
   ОТЗЫВЫ
   ============================================ */

.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border: 2px solid var(--light-lavender);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 10px var(--shadow-purple);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cosmic-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-name {
    font-weight: bold;
    color: var(--primary-purple);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 5px;
}

/* ============================================
   FAQ
   ============================================ */

.faq-section {
    background: var(--light-lavender);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--primary-purple);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 10px var(--shadow-purple);
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--primary-purple);
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    margin-left: auto;
}

.faq-item details[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-gray);
}

.faq-item details[open] .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* ============================================
   ФОРМА ЗАКАЗА
   ============================================ */

.form-section {
    background: var(--light-lavender);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--primary-purple), transparent),
        radial-gradient(1px 1px at 50% 50%, var(--primary-purple), transparent),
        radial-gradient(1px 1px at 80% 10%, var(--primary-purple), transparent);
    background-size: 100% 100%;
    opacity: 0.1;
    animation: stars 30s linear infinite;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border: 3px solid var(--primary-purple);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px var(--shadow-purple);
    position: relative;
    z-index: 1;
}

.form-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 30px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-purple);
    font-weight: 500;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-lavender);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-gray);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-item input[type="checkbox"] {
    margin-top: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-purple);
}

.checkbox-item label {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-item a {
    color: var(--primary-purple);
    text-decoration: underline;
}

.checkbox-item a:hover {
    color: var(--accent-gold);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--cosmic-gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-purple);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .form-container {
        padding: 25px;
    }
}

/* ============================================
   ПРЕИМУЩЕСТВА
   ============================================ */

.benefits-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.3rem;
    color: var(--primary-purple);
    font-weight: bold;
    margin-bottom: 10px;
}

.benefit-text {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   КОНТАКТЫ
   ============================================ */

.contact-section {
    background: var(--dark-cosmos);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-box {
    background: var(--white);
    border: 3px solid var(--accent-gold);
    border-radius: 20px;
    padding: 40px;
    color: var(--text-gray);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.contact-box-title {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: var(--primary-purple);
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-purple);
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-box {
        padding: 25px;
    }
    
    .contact-map {
        height: 300px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: linear-gradient(135deg, #2D1B69 0%, #1E1B4B 100%);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-section a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--light-lavender);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   COOKIE POPUP
   ============================================ */

.cookie-popup {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-cosmos);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    max-width: 90%;
    width: 500px;
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 20px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-btn {
    padding: 10px 25px;
    background: var(--accent-gold);
    color: var(--dark-cosmos);
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: var(--light-lavender);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cookie-popup {
        width: 95%;
        padding: 15px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* ============================================
   СТРАНИЦЫ ПОЛИТИКИ
   ============================================ */

.policy-page {
    padding: 80px 20px;
    min-height: 70vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--primary-purple);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px var(--shadow-purple);
}

.policy-title {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.policy-date {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-style: italic;
}

.policy-content h2 {
    color: var(--primary-purple);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.policy-content h3 {
    color: var(--primary-purple);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.policy-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-gray);
}

.policy-contact {
    background: var(--light-lavender);
    border-left: 4px solid var(--accent-gold);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.policy-contact p {
    margin-bottom: 10px;
}

.policy-contact strong {
    color: var(--primary-purple);
}

.policy-contact a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-contact a:hover {
    color: var(--primary-purple);
    text-decoration: underline;
}

.policy-back {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    background: var(--primary-purple);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.policy-back:hover {
    background: var(--accent-gold);
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .policy-container {
        padding: 25px;
    }
    
    .policy-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   EXTRA СТРАНИЦЫ (ABOUT, BLOG, TIPS)
   ============================================ */

.extra-page {
    padding: 80px 20px;
    min-height: 70vh;
}

.extra-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--primary-purple);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px var(--shadow-purple);
}

.extra-title {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.extra-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.extra-back {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: var(--primary-purple);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.extra-back:hover {
    background: var(--accent-gold);
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .extra-container {
        padding: 25px;
    }
    
    .extra-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   СТРАНИЦА БЛАГОДАРНОСТИ
   ============================================ */

.thank-you-page {
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-container {
    max-width: 600px;
    background: var(--white);
    border: 3px solid var(--primary-purple);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px var(--shadow-purple);
}

.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.thank-you-title {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-weight: bold;
}

.thank-you-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .thank-you-title {
        font-size: 1.75rem;
    }
}

