/* =================================
   Fox English School - Main Styles
   ================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Root Variables */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #FFD23F;
    --dark-color: #1A1A2E;
    --light-color: #F5F5F5;
    --white-color: #FFFFFF;
    --text-color: #333333;
    --text-light: #777777;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    --gradient-secondary: linear-gradient(135deg, #004E89 0%, #1F7A8C 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--white-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    line-height: 1.7;
    color: var(--text-light);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    position: relative;
}

/* Приподнятый заголовок для лучшей читаемости на переходах */
.section-header.elevated {
    background: var(--white-color);
    padding: 40px 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin: -80px auto 60px;
    max-width: 800px;
    position: relative;
    z-index: 10;
    transform: translateY(0);
    transition: var(--transition);
}

.section-header.elevated:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

/* Декоративный элемент */
.section-header.elevated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white-color) !important;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i,
.navbar-brand .fox-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.fox-icon {
    display: inline-block;
    font-style: normal;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .fox-icon,
.footer-brand h3:hover .fox-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Логотип сайта */
.site-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .site-logo,
.footer-brand h3:hover .site-logo {
    transform: scale(1.1);
}

.footer-brand .site-logo {
    height: 45px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    margin: 0 5px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(255, 107, 53, 0.1);
}

.btn-login {
    background: var(--gradient-primary);
    color: var(--white-color) !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    font-weight: 600;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--gradient-secondary);
    color: var(--white-color);
    overflow: hidden;
}

.hero-section .container,
.hero-section .scroll-indicator {
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.hero-stats,
.hero-buttons,
.hero-image {
    transition: opacity 0.3s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--white-color);
}

.btn-outline-light:hover {
    background: var(--white-color);
    color: var(--secondary-color) !important;
    transform: translateY(-3px);
}

.hero-stats {
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.hero-image {
    animation: fadeInRight 1s ease 0.5s both;
    position: relative;
    z-index: 2;
}

.hero-image img {
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white-color);
    font-size: 2rem;
    opacity: 0.8;
}

/* Lessons Section */
.lesson-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.lesson-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.lesson-card.featured {
    background: var(--gradient-primary);
    color: var(--white-color);
    transform: scale(1.05);
}

.lesson-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.lesson-card.featured .lesson-title,
.lesson-card.featured .lesson-description,
.lesson-card.featured .lesson-features li {
    color: var(--white-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.lesson-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white-color);
    box-shadow: var(--shadow-md);
}

.lesson-card.featured .lesson-icon {
    background: var(--white-color);
    color: var(--primary-color);
}

.lesson-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.lesson-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.7;
}

.lesson-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lesson-features li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.lesson-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.lesson-card.featured .lesson-features i {
    color: var(--white-color);
}

/* Students Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.achievement-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

.achievement-number {
    font-size: 5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.achievement-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.achievement-description {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.achievement-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
}

.achievement-card:hover .achievement-icon {
    color: rgba(255, 107, 53, 0.2);
    transform: scale(1.1) rotate(5deg);
}

/* Why Choose Us Section - WOW Effect */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.why-choose-card {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Темный оверлей для читаемости текста поверх фото */
.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.why-choose-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
    z-index: 2;
}

.why-choose-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
}

.why-choose-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.why-choose-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Альтернативные градиенты для карточек */
.why-choose-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 40px rgba(240, 147, 251, 0.3);
}

.why-choose-card:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(240, 147, 251, 0.5);
}

.why-choose-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 10px 40px rgba(79, 172, 254, 0.3);
}

.why-choose-card:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.5);
}

.why-choose-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 10px 40px rgba(67, 233, 123, 0.3);
}

.why-choose-card:nth-child(4):hover {
    box-shadow: 0 20px 60px rgba(67, 233, 123, 0.5);
}

.why-choose-card:nth-child(5) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 10px 40px rgba(250, 112, 154, 0.3);
}

.why-choose-card:nth-child(5):hover {
    box-shadow: 0 20px 60px rgba(250, 112, 154, 0.5);
}

.why-choose-card:nth-child(6) {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    box-shadow: 0 10px 40px rgba(48, 207, 208, 0.3);
}

.why-choose-card:nth-child(6):hover {
    box-shadow: 0 20px 60px rgba(48, 207, 208, 0.5);
}

.why-choose-icon {
    position: relative;
    z-index: 3;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.5s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.why-choose-title {
    position: relative;
    z-index: 3;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.why-choose-description {
    position: relative;
    z-index: 3;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.7;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Анимация появления */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.why-choose-card:hover {
    animation: cardFloat 3s ease-in-out infinite;
}

/* ========================================
   Testimonials Section - Masonry Grid (Pinterest Style)
   ======================================== */
.testimonials-grid {
    column-count: 3;
    column-gap: 30px;
    margin-top: 3rem;
    padding: 40px 0;
}

@media (min-width: 1400px) {
    .testimonials-grid {
        column-count: 4;
    }
}

.testimonial-card {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    break-inside: avoid;
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    border-left: 4px solid #667eea;
}

.testimonial-card:nth-child(2) {
    border-left-color: #f093fb;
}

.testimonial-card:nth-child(3) {
    border-left-color: #4facfe;
}

.testimonial-card:nth-child(4) {
    border-left-color: #43e97b;
}

.testimonial-card:nth-child(5) {
    border-left-color: #fa709a;
}

.testimonial-card:nth-child(6) {
    border-left-color: #30cfd0;
}

.testimonial-card:nth-child(7) {
    border-left-color: #ffd89b;
}

.testimonial-card:nth-child(8) {
    border-left-color: #a8edea;
}

.testimonial-card:nth-child(9) {
    border-left-color: #d299c2;
}

.testimonial-card:nth-child(10) {
    border-left-color: #fbc2eb;
}

.testimonial-card:nth-child(11) {
    border-left-color: #fdcbf1;
}

.testimonial-card:nth-child(12) {
    border-left-color: #a1c4fd;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    flex-shrink: 0;
    background: white;
}

.testimonial-photo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    flex-shrink: 0;
    font-weight: 600;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 3px 0;
    line-height: 1.3;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 18px;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 1rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
    margin: 0;
    position: relative;
    font-style: normal;
}

/* ========================================
   Customer Journey Section - Улучшенный дизайн со стикерами
   ======================================== */
.journey-carousel-container {
    margin-top: 3rem;
    position: relative;
}

.journey-carousel {
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.journey-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.journey-slide.active {
    display: block;
    animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.journey-content {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Клиент в верхней ЛЕВОЙ части */
.journey-client {
    position: absolute;
    top: 8%;
    left: 12%;
    transform: translateX(0);
    text-align: left;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInScaleLeft 0.8s ease 0.2s backwards;
}

@keyframes fadeInScaleLeft {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.journey-client-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid #FF8C42;
    object-fit: cover;
    box-shadow: 
        0 8px 24px rgba(255, 140, 66, 0.3),
        0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    flex-shrink: 0;
    background: white;
}

.journey-client-photo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 
        0 12px 30px rgba(255, 140, 66, 0.4),
        0 16px 50px rgba(0, 0, 0, 0.15);
}

.journey-client-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Caveat', cursive;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

/* Центральная цель - улучшенный желтый блок */
.journey-goal {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFE5B4 0%, #FFD699 100%);
    padding: 30px 45px;
    border-radius: 60px;
    max-width: 550px;
    text-align: center;
    border: 4px dashed rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 8px 25px rgba(255, 214, 153, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease 0.6s backwards;
    transition: all 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeInUpNoTranslate {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.journey-goal:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 
        0 12px 35px rgba(255, 214, 153, 0.5),
        0 6px 18px rgba(0, 0, 0, 0.1);
}

.journey-goal-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
    font-weight: 600;
}

/* Точки пути - реалистичные стикеры */
.journey-point {
    position: absolute;
    background: linear-gradient(145deg, #ffffff 0%, #f9f9f9 100%);
    padding: 25px 30px 30px;
    border-radius: 4px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 3px 6px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    max-width: 340px;
    transform: rotate(-2deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: stickerAppear 0.6s ease backwards;
}

@keyframes stickerAppear {
    from {
        opacity: 0;
        transform: rotate(-2deg) translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(-2deg) translateY(0) scale(1);
    }
}

.journey-point:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.18),
        0 8px 15px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    z-index: 20;
    border-color: rgba(255, 140, 66, 0.3);
}

/* Скотч сверху - более реалистичный */
.journey-point::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    width: 80px;
    height: 35px;
    background: 
        linear-gradient(180deg, 
            rgba(200, 200, 200, 0.3) 0%, 
            rgba(220, 220, 220, 0.2) 50%,
            rgba(200, 200, 200, 0.3) 100%);
    border-radius: 2px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

/* Легкая текстура бумаги */
.journey-point::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.01) 2px,
            rgba(0, 0, 0, 0.01) 4px
        );
    pointer-events: none;
    border-radius: 4px;
}

.journey-point-label {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Caveat', cursive;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.journey-point-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Позиции точек - как на скриншоте */
.journey-point.top-left {
    top: 35%;
    left: 8%;
}

.journey-point.top-left:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.02) !important;
    animation: none !important;
}

.journey-point.bottom-left {
    bottom: 8%;
    left: 8%;
}

.journey-point.bottom-left:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.02) !important;
    animation: none !important;
}

.journey-point.top-right {
    top: 15%;
    right: 8%;
}

.journey-point.top-right:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.02) !important;
    animation: none !important;
}

.journey-point.bottom-right {
    bottom: 8%;
    right: 8%;
}

.journey-point.bottom-right:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.02) !important;
    animation: none !important;
}

/* Стрелки - темные сплошные */
.journey-arrow {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: arrowFadeIn 1s ease 0.8s forwards;
}

@keyframes arrowFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes arrowDraw {
    from {
        opacity: 0;
        stroke-dashoffset: 100;
    }
    to {
        opacity: 0.6;
        stroke-dashoffset: 0;
    }
}

/* Дополнительные анимации с сохранением вращения */
@keyframes gentleFloatLeft {
    0%, 100% {
        transform: rotate(-5deg) translateY(0px);
    }
    50% {
        transform: rotate(-5deg) translateY(-5px);
    }
}

@keyframes gentleFloatRight {
    0%, 100% {
        transform: rotate(5deg) translateY(0px);
    }
    50% {
        transform: rotate(5deg) translateY(-5px);
    }
}

@keyframes gentleFloatBottomLeft {
    0%, 100% {
        transform: rotate(3deg) translateY(0px);
    }
    50% {
        transform: rotate(3deg) translateY(-5px);
    }
}

@keyframes gentleFloatBottomRight {
    0%, 100% {
        transform: rotate(-3deg) translateY(0px);
    }
    50% {
        transform: rotate(-3deg) translateY(-5px);
    }
}

/* Применяем тонкие анимации к стикерам */
.journey-point.top-left {
    animation: stickerAppear 0.6s ease 0.3s backwards, gentleFloatLeft 4s ease-in-out 1.5s infinite;
}

.journey-point.top-right {
    animation: stickerAppear 0.6s ease 0.4s backwards, gentleFloatRight 5s ease-in-out 2s infinite;
}

.journey-point.bottom-left {
    animation: stickerAppear 0.6s ease 0.5s backwards, gentleFloatBottomLeft 4.5s ease-in-out 2.5s infinite;
}

.journey-point.bottom-right {
    animation: stickerAppear 0.6s ease 0.6s backwards, gentleFloatBottomRight 5.5s ease-in-out 3s infinite;
}

/* Пульсация для фото клиента */
@keyframes photoPulse {
    0%, 100% {
        box-shadow: 
            0 8px 24px rgba(255, 140, 66, 0.3),
            0 12px 40px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 10px 28px rgba(255, 140, 66, 0.4),
            0 14px 45px rgba(0, 0, 0, 0.12);
    }
}

.journey-client-photo {
    animation: photoPulse 3s ease-in-out infinite;
}

.journey-arrow svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.journey-arrow path {
    stroke: #999;
    stroke-width: 2.5;
    stroke-dasharray: 10, 5;
    fill: none;
    stroke-linecap: round;
}

/* Навигация карусели - улучшенный дизайн */
.journey-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.journey-nav-btn {
    background: #2563eb;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
}

.journey-nav-btn:hover {
    background: #1d4ed8;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.journey-nav-btn:active {
    transform: scale(1.05);
    background: #1e40af;
}

.journey-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    background: #93c5fd;
}

.journey-nav-btn:disabled:hover {
    background: #93c5fd;
    transform: scale(1);
}

.journey-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.journey-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fed7aa;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.journey-dot.active {
    background: #FF6B35;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.journey-dot:hover:not(.active) {
    background: #FF6B35;
    transform: scale(1.2);
    opacity: 0.7;
}

/* Pricing Section */
.pricing-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--gradient-secondary);
    color: var(--white-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-card.featured .pricing-plan,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-features li {
    color: var(--white-color);
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-plan {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 10px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 25px;
}

.pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    padding: 30px 0 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-light);
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.pricing-card.featured .pricing-features i {
    color: var(--accent-color);
}

/* Special Offers Section - Яркий баннер спецпредложений */
.special-offers-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-height: 120px;
}

.special-offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 87, 108, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.special-offers-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.special-offer-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 42px 32px;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 280px;
    transition: all 0.4s ease;
}

.special-offer-card:last-child {
    border-right: none;
}

.special-offer-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Иконка предложения */
.special-offer-icon {
    position: relative;
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
    color: var(--white-color);
    transition: transform 0.3s ease;
}

.special-offer-card:hover .special-offer-icon {
    transform: scale(1.1) rotate(-5deg);
}

.special-offer-icon.gift {
    background: linear-gradient(135deg, #FF6B35 0%, #f7931e 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.special-offer-icon.discount {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.special-offer-icon.star {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    box-shadow: 0 8px 20px rgba(56, 239, 125, 0.4);
}

.special-offer-icon.fire {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.4);
}

.special-offer-icon.family {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
}

/* Контент предложения */
.special-offer-content {
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.special-offer-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.special-offer-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

/* Бейдж */
.special-offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

/* Анимации */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.special-offer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.special-offer-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

/* Адаптивность */
@media (max-width: 992px) {
    .special-offers-inner {
        flex-wrap: wrap;
    }
    
    .special-offer-card {
        min-width: 45%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .special-offer-card:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .special-offer-card:last-child,
    .special-offer-card:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .special-offers-section {
        border-radius: 16px;
    }
    
    .special-offer-card {
        min-width: 100%;
        padding: 20px 24px;
        border-right: none !important;
    }
    
    .special-offer-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
        border-radius: 12px;
    }
    
    .special-offer-title {
        font-size: 1.15rem;
    }
    
    .special-offer-subtitle {
        font-size: 0.8rem;
    }
    
    .special-offer-badge {
        font-size: 0.6rem;
        padding: 4px 8px;
    }
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question span {
    flex: 1;
    line-height: 1.4;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item:not(.active) .faq-question i {
    transform: rotate(180deg);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    border-top: 0 solid #eee;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
    border-top: 1px solid #eee;
}

.faq-answer p {
    margin: 0;
    padding-top: 15px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .faq-list {
        gap: 12px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
}

/* Subscription Pricing - Таблица возрастных групп */
.subscription-card {
    background: var(--white-color);
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    border: 2px solid transparent;
}

.subscription-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.subscription-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

.subscription-header {
    background: var(--gradient-primary);
    padding: 30px;
    text-align: center;
    color: var(--white-color);
    position: relative;
}

.subscription-header.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.subscription-header.silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
}

.subscription-header.individual {
    background: var(--gradient-secondary);
}

.subscription-header.paired {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.subscription-header.single {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
}

.subscription-type {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.subscription-description {
    margin: 15px auto 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    max-width: 90%;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.subscription-simple-price {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.simple-price-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.simple-price-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.simple-price-item.highlight {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid var(--primary-color);
}

.simple-price-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 40px;
    flex-shrink: 0;
}

.simple-label {
    flex: 1;
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
}

.simple-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
}

.simple-price-item.highlight .simple-value {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.subscription-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.subscription-body {
    padding: 25px;
}

.subscription-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.subscription-price-table thead {
    background: transparent;
}

.subscription-price-table th {
    padding: 10px 12px 15px;
    text-align: left;
    font-weight: 600;
    color: var(--gray-500);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e9ecef;
}

.subscription-price-table th:last-child {
    text-align: right;
}

.subscription-price-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.subscription-price-table tbody tr:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: scale(1.02);
}

.subscription-price-table tbody tr:last-child {
    border-bottom: none;
}

.subscription-price-table td {
    padding: 18px 12px;
    color: var(--text-color);
}

.age-group-name {
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-group-name i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.price-cell {
    text-align: right;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.price-byn {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    margin-left: 5px;
}

.lesson-duration {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.lesson-duration i {
    color: var(--primary-color);
    margin-right: 5px;
}

.subscription-footer {
    padding: 0 25px 25px;
}

.subscription-cta {
    width: 100%;
    padding: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.subscription-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Pricing Loading State */
.pricing-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Pricing Empty State */
.pricing-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.pricing-empty i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.pricing-empty h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

/* Team Section */
.team-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-credo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: rgba(26, 26, 46, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.team-card:hover .team-credo {
    opacity: 1;
    visibility: visible;
}

.team-credo-text {
    color: var(--white-color);
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
    margin: 0;
    position: relative;
}

.team-credo-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -15px;
    opacity: 0.3;
}

.team-credo-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    bottom: -35px;
    right: -15px;
    opacity: 0.3;
}

.team-info {
    padding: 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
}

/* Workshops Section */
.workshop-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 25px;
    transition: var(--transition);
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.workshop-date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}

/* Многодневные мероприятия - расширенный блок для диапазона дат */
.workshop-date:has(.date-day-small),
.workshop-date-wide {
    width: auto;
    min-width: 100px;
    padding: 0 15px;
}

.date-day-small {
    font-size: 1.1rem !important;
}

.date-day {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.workshop-content {
    flex: 1;
}

.workshop-category {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.workshop-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.workshop-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.workshop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.workshop-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.workshop-meta i {
    color: var(--primary-color);
}

/* Articles Section */
.article-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.article-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-meta i {
    color: var(--primary-color);
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.7;
}

.article-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-link:hover {
    gap: 12px;
}

/* Benefits Section */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-text {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

/* Benefits Section специально убран benefits-cta, так как теперь используется elevated header */

/* Courses Tabs - Vertical Navigation with Content */
.courses-tabs-container {
    margin-top: 3rem;
}

/* Tabs Navigation (Left Side) */
.courses-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.course-tab-button {
    background: var(--white-color);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.course-tab-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.course-tab-button:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.course-tab-button:hover::before {
    transform: scaleY(1);
}

.course-tab-button.active {
    background: var(--gradient-primary);
    color: var(--white-color);
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.course-tab-button.active::before {
    transform: scaleY(1);
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.course-tab-button.featured {
    border-color: var(--accent-color);
}

.course-tab-button.featured .course-tab-badge {
    display: inline-block;
}

.course-tab-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    display: inline-block;
    transition: transform 0.3s ease;
}

.course-tab-button.active .course-tab-icon {
    color: var(--white-color);
    transform: scale(1.1) rotate(5deg);
}

.course-tab-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.course-tab-button.active .course-tab-title {
    color: var(--white-color);
}

.course-tab-description {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

.course-tab-button.active .course-tab-description {
    color: rgba(255, 255, 255, 0.9);
}

.course-tab-badge {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.course-tab-button.featured .course-tab-badge {
    display: block;
}

/* Tabs Content (Right Side) */
.courses-tabs-content {
    position: relative;
    min-height: 500px;
}

.course-tab-pane {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.course-tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.course-content-card {
    background: var(--white-color);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.course-content-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.course-content-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white-color);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.course-content-title h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.course-content-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 5px;
}

.course-content-description {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.course-content-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
}

.course-content-features li {
    padding: 12px 0;
    color: var(--text-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-content-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.course-content-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.course-content-actions .btn {
    padding: 15px 40px;
    font-size: 1.05rem;
}

/* Course Section Titles */
.course-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

/* Course Gallery */
.course-gallery {
    margin: 30px 0;
}

.course-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.course-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.course-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.course-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-gallery-item:hover img {
    transform: scale(1.1);
}

.course-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-gallery-item:hover .course-gallery-overlay {
    opacity: 1;
}

.course-gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white-color);
}

/* Course Videos */
.course-videos {
    margin: 30px 0;
}

.course-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.course-video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.course-video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.course-video-wrapper iframe,
.course-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-video-wrapper video {
    background: #000;
}

.course-video-title {
    padding: 15px;
    background: var(--white-color);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

/* Course Media Section - New Compact Layout */
.course-media-section {
    margin: 30px 0;
}

.course-media-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: stretch;
}

/* Видео занимает 50% ширины */
.course-media-videos {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
}

/* Фотогалерея занимает 50% ширины - привязана к высоте видео */
.course-media-gallery {
    flex: 0 0 calc(50% - 20px);
    display: flex;
    align-items: stretch;
}

/* Компактная галерея - 3 колонки, 2 ряда, высота = видео */
.course-gallery-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    height: 100%;
}

.course-gallery-item-compact {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    min-height: 0;
    min-width: 0;
    width: 100%;
    height: 100%;
}

.course-gallery-item-compact:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.course-gallery-item-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.course-gallery-item-compact:hover img {
    transform: scale(1.1);
}

.course-gallery-item-compact .course-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-gallery-item-compact:hover .course-gallery-overlay {
    opacity: 1;
}

.course-gallery-item-compact .course-gallery-overlay i {
    font-size: 1.2rem;
    color: var(--white-color);
}

/* Lightbox */
.course-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-lightbox.active {
    opacity: 1;
}

.course-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.course-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10001;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.course-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.course-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white-color);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
    z-index: 10002;
}

.course-lightbox-close:hover {
    transform: scale(1.2) rotate(90deg);
}

.course-lightbox-prev,
.course-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white-color);
    color: var(--white-color);
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.course-lightbox-prev:hover,
.course-lightbox-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.course-lightbox-prev {
    left: -80px;
}

.course-lightbox-next {
    right: -80px;
}

.course-lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white-color);
    font-size: 1.1rem;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .courses-tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        margin-bottom: 30px;
        padding-bottom: 10px;
    }
    
    .course-tab-button {
        min-width: 200px;
        flex-shrink: 0;
    }
    
    .course-tab-button:hover,
    .course-tab-button.active {
        transform: translateY(-5px);
    }
    
    .course-tab-button::before {
        width: 100%;
        height: 4px;
        top: auto;
        bottom: 0;
        transform: scaleX(0);
    }
    
    .course-tab-button:hover::before,
    .course-tab-button.active::before {
        transform: scaleX(1);
    }
    
    .course-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .course-videos-grid {
        grid-template-columns: 1fr;
    }
    
    /* Компактный layout на планшетах - вертикально */
    .course-media-container {
        flex-direction: column;
    }
    
    .course-media-videos,
    .course-media-gallery {
        flex: 1 1 100%;
    }
    
    .course-gallery-compact {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .course-content-card {
        padding: 25px;
    }
    
    .course-content-header {
        flex-direction: column;
        text-align: center;
    }
    
    .course-content-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .course-content-title h3 {
        font-size: 1.5rem;
    }
    
    .course-content-features {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .course-content-actions {
        justify-content: center;
    }
    
    .course-content-actions .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .course-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Компактная галерея на мобильных - 3 колонки */
    .course-gallery-compact {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .course-lightbox-prev {
        left: 10px;
    }
    
    .course-lightbox-next {
        right: 10px;
    }
    
    .course-lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* Contacts Section */
.contact-info {
    background: var(--gradient-secondary);
    color: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.8;
}

.contact-details p strong {
    color: var(--accent-color);
    font-weight: 600;
    min-width: 120px;
    display: inline-block;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.9);
}

.contact-details a:hover {
    color: var(--accent-color);
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white-color);
    margin-right: 10px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form .form-label i {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    background: var(--white-color);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.1);
    outline: none;
    background: #fff;
}

.form-control::placeholder {
    color: #adb5bd;
}

.form-control-lg {
    padding: 16px 20px;
    font-size: 1.05rem;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
    padding-right: 45px;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.contact-form .btn-primary {
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 10px;
}

.contact-form .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Login Modal */
.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--white-color);
    border-radius: 20px 20px 0 0;
    padding: 20px 30px;
}

.modal-title {
    font-weight: 700;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.construction-icon i {
    animation: swing 2s infinite;
}

.features-list ul li {
    padding: 8px 0;
}

/* Event Registration Modal - Modern Design */
.event-modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

/* Wider modal for Learn More */
#learnMoreModal .modal-dialog {
    max-width: 600px;
}

.event-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.event-modal-header {
    background: linear-gradient(135deg, #FF6B35 0%, #f7931e 50%, #FF6B35 100%);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    padding: 35px 30px 30px;
    text-align: center;
    position: relative;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.event-modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: white;
    backdrop-filter: blur(10px);
}

.event-modal-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 5px;
}

.event-modal-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
}

.event-modal-body {
    padding: 25px 30px;
    background: #fafafa;
}

/* Event Info Card */
.event-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 18px 20px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.event-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.event-info-content {
    flex: 1;
}

.event-type-label {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #f7931e 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.event-name {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
}

.event-datetime {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
}

.event-datetime i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Form Inputs */
.form-floating-group {
    margin-bottom: 15px;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 1rem;
    transition: color 0.3s ease;
    z-index: 1;
}

.input-icon-wrapper.textarea-wrapper i {
    top: 18px;
    transform: none;
}

.input-icon-wrapper .form-control {
    padding: 16px 18px 16px 50px;
    border: 2px solid #e9ecef;
    border-radius: 14px;
    font-size: 0.95rem;
    background: white;
    transition: all 0.3s ease;
}

.input-icon-wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    outline: none;
}

.input-icon-wrapper .form-control:focus + i,
.input-icon-wrapper:focus-within i {
    color: var(--primary-color);
}

.input-icon-wrapper .form-control::placeholder {
    color: #adb5bd;
}

/* Submit Button */
.event-modal-footer {
    padding: 0 30px 30px;
    background: #fafafa;
}

.btn-event-submit {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #f7931e 100%);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.btn-event-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.45);
}

.btn-event-submit:active {
    transform: translateY(0);
}

.btn-event-submit .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.btn-event-submit:hover .btn-icon {
    transform: translateX(5px);
}

.btn-event-submit.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-event-submit.loading .btn-text {
    display: none;
}

.btn-event-submit.loading::before {
    content: 'Отправка...';
}

.btn-event-submit.loading .btn-icon i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* SweetAlert2 Modern Styles */
.swal-modern {
    border-radius: 20px !important;
    padding: 25px !important;
}

.swal-modern .swal2-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

.swal-modern .swal2-html-container {
    font-size: 1rem !important;
}

.swal-modern .swal2-confirm {
    border-radius: 12px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.swal-success-custom .swal2-icon.swal2-success {
    border-color: #4CAF50 !important;
}

.swal-success-custom .swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #4CAF50 !important;
}

.swal-success-custom .swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(76, 175, 80, 0.3) !important;
}

/* Responsive Modal */
@media (max-width: 576px) {
    .event-modal-content {
        border-radius: 20px;
        margin: 10px;
    }
    
    .event-modal-header {
        padding: 30px 20px 25px;
    }
    
    .event-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .event-modal-title {
        font-size: 1.3rem;
    }
    
    .event-modal-body {
        padding: 20px;
    }
    
    .event-modal-footer {
        padding: 0 20px 25px;
    }
    
    .event-info-card {
        padding: 15px;
    }
    
    .input-icon-wrapper .form-control {
        padding: 14px 14px 14px 45px;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 0;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.footer-brand i,
.footer-brand .fox-icon {
    color: var(--primary-color);
    font-size: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white-color);
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-5px);
}

.footer-social a:hover i {
    color: white !important;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-contact ul li {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes swing {
    0%, 100% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header.elevated {
        padding: 30px 30px;
        margin: -60px auto 40px;
        max-width: 90%;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    
    .workshop-card {
        flex-direction: column;
    }
    
    .workshop-date {
        align-self: flex-start;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .achievement-number {
        font-size: 4rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-choose-card {
        padding: 35px 25px;
        min-height: 280px;
    }
    
    .why-choose-icon {
        font-size: 3rem;
    }
    
    .testimonials-grid {
        column-count: 2;
        column-gap: 20px;
        padding: 30px 0;
    }
    
    .testimonial-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    /* Customer Journey - Tablet */
    .journey-content {
        min-height: 650px;
        padding: 30px 15px;
    }
    
    .journey-client {
        gap: 15px;
        flex-direction: column;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .journey-client-photo {
        width: 110px;
        height: 110px;
        border-width: 5px;
    }
    
    .journey-client-name {
        font-size: 2rem;
    }
    
    .journey-point {
        max-width: 260px;
        padding: 20px 25px 25px;
        font-size: 0.9rem;
    }
    
    .journey-point-label {
        font-size: 1.4rem;
    }
    
    .journey-point.top-left {
        top: 32%;
        left: 6%;
    }
    
    .journey-point.top-right {
        top: 18%;
        right: 6%;
    }
    
    .journey-point.bottom-left {
        bottom: 10%;
        left: 6%;
    }
    
    .journey-point.bottom-right {
        bottom: 10%;
        right: 6%;
    }
    
    .journey-goal {
        max-width: 450px;
        padding: 25px 35px;
        border-radius: 50px;
        bottom: 15%;
    }
    
    .journey-goal-text {
        font-size: 1rem;
    }
    
    .journey-client {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .journey-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-header.elevated {
        padding: 25px 20px;
        margin: -50px auto 30px;
        max-width: 95%;
        border-radius: 20px;
    }
    
    .section-header.elevated::before {
        width: 60px;
        height: 4px;
    }
    
    .lesson-card.featured,
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .lesson-card.featured:hover,
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-number {
        font-size: 3.5rem;
    }
    
    .achievement-card {
        padding: 30px 25px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-card {
        padding: 30px 20px;
        min-height: 260px;
    }
    
    .why-choose-icon {
        font-size: 2.5rem;
    }
    
    .why-choose-title {
        font-size: 1.2rem;
    }
    
    .testimonials-grid {
        column-count: 1;
        padding: 20px 0;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-photo,
    .testimonial-photo-placeholder {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .testimonial-name {
        font-size: 0.95rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    /* Customer Journey - Mobile */
    .journey-carousel {
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .journey-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: auto;
        padding: 20px 10px;
    }
    
    .journey-client {
        position: static !important;
        transform: none !important;
        margin-bottom: 25px;
        flex-direction: column;
        gap: 10px;
    }
    
    .journey-client-photo {
        width: 90px;
        height: 90px;
        border-width: 4px;
    }
    
    .journey-client-name {
        font-size: 1.8rem;
    }
    
    .journey-point {
        position: static !important;
        margin: 15px auto;
        transform: rotate(0deg) !important;
        max-width: 100%;
        animation: stickerAppearMobile 0.5s ease backwards;
    }
    
    @keyframes stickerAppearMobile {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .journey-point:hover {
        transform: translateY(-5px) scale(1.01) !important;
    }
    
    .journey-point.top-left,
    .journey-point.bottom-left,
    .journey-point.top-right,
    .journey-point.bottom-right {
        position: static !important;
        transform: rotate(0deg) !important;
    }
    
    .journey-point-label {
        font-size: 1.4rem;
    }
    
    .journey-point-text {
        font-size: 0.95rem;
    }
    
    .journey-goal {
        position: static !important;
        transform: none !important;
        max-width: 100%;
        margin: 25px auto 0;
        padding: 20px 25px;
        border-radius: 40px;
    }
    
    .journey-goal-text {
        font-size: 0.95rem;
    }
    
    .journey-arrow {
        display: none !important;
    }
    
    .journey-nav {
        gap: 15px;
        margin-top: 30px;
    }
    
    .journey-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .journey-dot {
        width: 10px;
        height: 10px;
    }
    
    .journey-dot.active {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 991px) {
    /* Subscription cards на планшетах */
    .subscription-type {
        font-size: 1.5rem;
    }
    
    .subscription-price-table th {
        font-size: 0.8rem;
        padding: 12px 10px;
    }
    
    .subscription-price-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .price-cell {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    /* Subscription cards на мобильных */
    .subscription-card {
        margin-bottom: 20px;
    }
    
    .subscription-header {
        padding: 25px 20px;
    }
    
    .subscription-type {
        font-size: 1.3rem;
    }
    
    .subscription-description {
        font-size: 0.8rem;
        margin-top: 10px;
        padding: 8px 12px;
    }
    
    .subscription-body {
        padding: 20px 15px;
    }
    
    .subscription-price-table {
        font-size: 0.85rem;
    }
    
    .subscription-price-table th,
    .subscription-price-table td {
        padding: 12px 8px;
    }
    
    .subscription-price-table th {
        font-size: 0.75rem;
    }
    
    .age-group-name {
        font-size: 0.9rem;
        gap: 5px;
    }
    
    .age-group-name i {
        font-size: 0.9rem;
    }
    
    .lesson-duration {
        font-size: 0.8rem;
    }
    
    .price-cell {
        font-size: 1.1rem;
    }
    
    .price-byn {
        font-size: 0.7rem;
    }
    
    .subscription-cta {
        font-size: 1rem;
        padding: 12px;
    }
    
    .simple-price-item {
        padding: 12px 15px;
    }
    
    .simple-price-item i {
        font-size: 1.1rem;
        width: 35px;
    }
    
    .simple-label {
        font-size: 0.85rem;
    }
    
    .simple-value {
        font-size: 1.1rem;
    }
    
    .simple-price-item.highlight .simple-value {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }
    
    .workshop-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Компактные таблицы абонементов на малых экранах */
    .subscription-type {
        font-size: 1.2rem;
    }
    
    .subscription-header {
        padding: 20px 15px;
    }
    
    .subscription-body {
        padding: 15px 10px;
    }
    
    .subscription-price-table th {
        font-size: 0.7rem;
        padding: 10px 6px;
    }
    
    .subscription-price-table td {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    .age-group-name {
        font-size: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
    
    .lesson-duration {
        font-size: 0.75rem;
    }
    
    .lesson-duration i {
        display: block;
        margin-bottom: 3px;
    }
    
    .price-cell {
        font-size: 1rem;
    }
    
    .subscription-footer {
        padding: 0 15px 15px;
    }
    
    .subscription-cta {
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .subscription-description {
        font-size: 0.75rem;
        margin-top: 8px;
        padding: 6px 10px;
    }
    
    .simple-price-item {
        padding: 10px 12px;
        flex-wrap: wrap;
    }
    
    .simple-price-item i {
        font-size: 1rem;
        width: 30px;
    }
    
    .simple-label {
        font-size: 0.8rem;
    }
    
    .simple-value {
        font-size: 1rem;
    }
    
    .simple-price-item.highlight .simple-value {
        font-size: 1.2rem;
    }
}

/* ========================================
   CONSENT CHECKBOXES - Чекбоксы согласий
   ======================================== */

.consent-checkboxes {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.consent-check {
    margin-bottom: 12px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.consent-check:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
}

.consent-check .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    border: 2px solid #dee2e6;
    transition: all 0.2s ease;
}

.consent-check .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.consent-check .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
    border-color: var(--primary-color);
}

.consent-check .form-check-label {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    margin-left: 8px;
    cursor: pointer;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.2s ease;
}

.privacy-link:hover {
    color: #e55a2b;
    text-decoration: none;
}

/* Компактные чекбоксы согласий */
.consent-checkboxes.compact {
    margin-top: 15px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
    line-height: 1.4;
}

.consent-item:last-child {
    margin-bottom: 0;
}

.consent-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.consent-item .checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.consent-item:hover .checkmark {
    border-color: var(--primary-color);
}

.consent-item input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.consent-item .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-item input:checked ~ .checkmark:after {
    display: block;
}

.consent-item .consent-text {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
}

.consent-item .consent-text .privacy-link {
    font-size: 0.8rem;
}

/* Select в input-icon-wrapper */
.input-icon-wrapper select.form-select {
    padding-left: 45px;
    height: 52px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    background-position: right 12px center;
    cursor: pointer;
}

.input-icon-wrapper select.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

/* Disabled submit button */
.btn-event-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #ccc 0%, #aaa 100%);
    transform: none !important;
}

.btn-event-submit:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ========================================
   PRIVACY POLICY MODAL - Модальное окно политики
   ======================================== */

.privacy-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.privacy-modal-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 25px 30px;
    border: none;
    color: #fff;
}

.privacy-modal-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #FF8C5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    color: #fff;
}

.privacy-modal-header .modal-title {
    font-size: 1.4rem;
    font-weight: 600;
    flex-grow: 1;
}

.privacy-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.privacy-modal-body h2,
.privacy-modal-body h3,
.privacy-modal-body h4 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-modal-body h2:first-child,
.privacy-modal-body h3:first-child {
    margin-top: 0;
}

.privacy-modal-body p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-modal-body ul,
.privacy-modal-body ol {
    color: #555;
    padding-left: 25px;
    margin-bottom: 15px;
}

.privacy-modal-body li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-modal-body a {
    color: var(--primary-color);
}

#privacyPolicyModal .modal-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 15px 30px;
}

