/* ============================================
   ОСНОВНЫЕ СТИЛИ И СБРОС
   ============================================ */

* {
    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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1A1B3A;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ЦВЕТОВАЯ ПАЛИТРА
   ============================================ */

:root {
    --primary: #6B2C91;
    --secondary: #D4AF37;
    --dark: #1A1B3A;
    --light: #E8D5F2;
    --white: #FFFFFF;
    --dark-purple: #4A1A5C;
    --accent: #C77BBF;
    --silver: #B8B8D4;
}

/* ============================================
   HEADER И НАВИГАЦИЯ
   ============================================ */

.header {
    background: linear-gradient(135deg, #4A1A5C 0%, #6B2C91 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(107, 44, 145, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #D4AF37;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    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-color: #D4AF37;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #FFFFFF;
    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: #D4AF37;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #D4AF37;
}

.nav-link:hover::after {
    width: 100%;
}

/* Мобильное меню */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #4A1A5C 0%, #6B2C91 100%);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(107, 44, 145, 0.3);
    }
    
    .menu-toggle:checked ~ .nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .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 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #6B2C91 0%, #1A1B3A 50%, #4A1A5C 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    padding: 40px 20px;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: fadeInUp 1.2s ease;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #E8D5F2;
    animation: fadeInUp 1.4s ease;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #C77BBF 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
    animation: fadeInUp 1.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #6B2C91 0%, #4A1A5C 100%);
    color: #FFFFFF;
    padding: 12px 30px;
    font-size: 16px;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 44, 145, 0.4);
}

/* Декоративные звезды */
.stars-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.stars-decoration::before,
.stars-decoration::after {
    content: '✦';
    position: absolute;
    color: #D4AF37;
    font-size: 30px;
    animation: pulse 2s infinite;
}

.stars-decoration::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.stars-decoration::after {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.stars-decoration-small {
    position: relative;
    margin-top: 30px;
}

.stars-decoration-small::before {
    content: '✦ ✦ ✦';
    display: block;
    text-align: center;
    color: #D4AF37;
    font-size: 24px;
    letter-spacing: 20px;
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

/* ============================================
   ОБЩИЕ СЕКЦИИ
   ============================================ */

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #6B2C91;
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #D4AF37 0%, #C77BBF 100%);
    border-radius: 2px;
}

/* ============================================
   СЕКЦИЯ O NAS
   ============================================ */

.about-section {
    background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #1A1B3A;
    animation: fadeInUp 0.8s ease;
}

/* ============================================
   СЕКЦИЯ USŁUGI
   ============================================ */

.services-section {
    background-color: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(107, 44, 145, 0.2);
    animation: fadeInUp 0.8s ease;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(107, 44, 145, 0.4);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-title {
    font-size: 24px;
    color: #6B2C91;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #1A1B3A;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   СЕКЦИЯ DLACZEGO MY
   ============================================ */

.why-section {
    background: linear-gradient(135deg, #1A1B3A 0%, #4A1A5C 100%);
    color: #FFFFFF;
}

.why-section .section-title {
    color: #D4AF37;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.why-icon {
    font-size: 50px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.why-title {
    font-size: 20px;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: bold;
}

.why-text {
    font-size: 16px;
    color: #E8D5F2;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   СЕКЦИЯ JAK TO DZIAŁA
   ============================================ */

.how-section {
    background-color: #FFFFFF;
}

.how-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    text-align: center;
    padding: 30px;
    min-width: 200px;
    animation: fadeInUp 0.8s ease;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #C77BBF 100%);
    color: #FFFFFF;
    font-size: 36px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
    animation: pulse 2s infinite;
}

.step-title {
    font-size: 20px;
    color: #6B2C91;
    margin-bottom: 10px;
    font-weight: bold;
}

.step-text {
    font-size: 16px;
    color: #1A1B3A;
    line-height: 1.6;
}

.step-connector {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37 0%, #C77BBF 100%);
    margin: 0 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .how-steps {
        flex-direction: column;
    }
    
    .step-connector {
        width: 3px;
        height: 50px;
        margin: 20px 0;
    }
}

/* ============================================
   СЕКЦИЯ OPINIE
   ============================================ */

.testimonials-section {
    background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(107, 44, 145, 0.2);
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(107, 44, 145, 0.3);
}

.testimonial-quote {
    font-size: 60px;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #1A1B3A;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #6B2C91;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   СЕКЦИЯ FAQ
   ============================================ */

.faq-section {
    background-color: #FFFFFF;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(107, 44, 145, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(107, 44, 145, 0.2);
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #6B2C91;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 30px 25px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #1A1B3A;
    animation: fadeIn 0.3s ease;
}

/* ============================================
   СЕКЦИЯ FORMULARZ
   ============================================ */

.form-section {
    background: linear-gradient(135deg, #6B2C91 0%, #1A1B3A 50%, #4A1A5C 100%);
    position: relative;
    overflow: hidden;
}

.form-section .section-title {
    color: #D4AF37;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(107, 44, 145, 0.3);
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.form-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.form-decoration::before {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #D4AF37;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

.form-error {
    background-color: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #c62828;
}

.order-form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #6B2C91;
    margin-bottom: 8px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 15px;
    border: 2px solid #E8D5F2;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
    color: #1A1B3A;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #6B2C91;
    box-shadow: 0 0 0 3px rgba(107, 44, 145, 0.1);
}

.form-select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    color: #1A1B3A;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #6B2C91;
}

.checkbox-label a {
    color: #6B2C91;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #4A1A5C;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    padding: 18px;
    font-size: 18px;
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
    }
}

/* ============================================
   СЕКЦИЯ KONTAKT
   ============================================ */

.contact-section {
    background-color: #FFFFFF;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.contact-info-box {
    background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(107, 44, 145, 0.2);
    border: 2px solid #6B2C91;
}

.contact-item {
    margin-bottom: 30px;
    text-align: left;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon-large {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
}

.contact-title {
    font-size: 20px;
    color: #6B2C91;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-text {
    font-size: 16px;
    color: #1A1B3A;
    line-height: 1.8;
}

.contact-text a {
    color: #6B2C91;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #4A1A5C;
    text-decoration: underline;
}

.contact-map {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(107, 44, 145, 0.2);
    border: 2px solid #6B2C91;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-info-box {
        padding: 30px 20px;
    }
    
    .contact-map {
        height: 300px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1A1B3A 0%, #4A1A5C 100%);
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 28px;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #E8D5F2;
}

.footer-subtitle {
    font-size: 18px;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-contact {
    font-size: 14px;
    line-height: 2;
    color: #E8D5F2;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #E8D5F2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #D4AF37;
}

.contact-icon {
    margin-right: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #E8D5F2;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #B8B8D4;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COOKIE POPUP
   ============================================ */

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 27, 58, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #D4AF37;
    text-decoration: underline;
}

.cookie-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #C77BBF 100%);
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ============================================
   СТРАНИЦЫ ПОЛИТИКИ (ЕДИНЫЙ СТИЛЬ)
   ============================================ */

.policy-page {
    min-height: 100vh;
    padding: 100px 20px 80px;
    background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 15px;
    border: 2px solid #6B2C91;
    box-shadow: 0 4px 20px rgba(107, 44, 145, 0.2);
}

.policy-title {
    font-size: 36px;
    color: #6B2C91;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.policy-content {
    font-size: 16px;
    line-height: 1.8;
    color: #1A1B3A;
}

.policy-content h2 {
    font-size: 24px;
    color: #6B2C91;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.policy-content h3 {
    font-size: 20px;
    color: #4A1A5C;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: bold;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul,
.policy-content ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-content a {
    color: #6B2C91;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #4A1A5C;
}

.policy-back {
    text-align: center;
    margin-top: 40px;
}

.policy-back .btn {
    background: linear-gradient(135deg, #6B2C91 0%, #4A1A5C 100%);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 30px 20px;
    }
    
    .policy-title {
        font-size: 28px;
    }
}

/* ============================================
   ДОПОЛНИТЕЛЬНЫЕ СТРАНИЦЫ
   ============================================ */

.content-page {
    min-height: 100vh;
    padding: 100px 20px 80px;
    background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(107, 44, 145, 0.2);
    animation: fadeInUp 0.8s ease;
}

.content-block h1 {
    font-size: 36px;
    color: #6B2C91;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #1A1B3A;
    margin-bottom: 20px;
}

.content-back {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .content-block {
        padding: 30px 20px;
    }
    
    .content-block h1 {
        font-size: 28px;
    }
    
    .content-block p {
        font-size: 16px;
    }
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6B2C91 0%, #1A1B3A 50%, #4A1A5C 100%);
    padding: 100px 20px;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #FFFFFF;
    background: #FFFFFF;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(107, 44, 145, 0.3);
    border: 2px solid #6B2C91;
    animation: fadeInUp 1s ease;
}

.thank-you-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.thank-you-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #6B2C91;
    text-shadow: none;
}

.thank-you-text {
    font-size: 20px;
    line-height: 1.8;
    color: #1A1B3A;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 40px 30px;
    }
    
    .thank-you-title {
        font-size: 32px;
    }
    
    .thank-you-text {
        font-size: 18px;
    }
    
    .thank-you-icon {
        font-size: 60px;
    }
}

