/* Base typography */
html,
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

/* Hero Section Styles */
.hero-section {
    background-color: #f0f8ff;
    background-image: 
        linear-gradient(90deg, rgba(224, 242, 247, 0.3) 1px, transparent 1px),
        linear-gradient(rgba(224, 242, 247, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(224, 242, 247, 0.4) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 20px 20px;
    background-position: 0 0, 0 0, 0 0;
    padding: 80px 0;
    min-height: 560px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(224, 242, 247, 0.6) 0%, rgba(224, 242, 247, 0.2) 100%);
    border-radius: 50% 0 0 0;
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    display: block;
}

.hero-title-dark {
    color: #212529;
    display: block;
}

.hero-title-blue {
    color: #007bff;
    display: block;
}

.hero-tag {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.25rem;
    color: #343a40;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-box {
    background-color: #ffffff;
    border: 2px solid #ff8c00;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 0.95rem;
    color: #212529;
    font-weight: 500;
    min-width: 220px;
    max-width: 360px;
    text-align: center;
}

.feature-box span {
    display: block;
}

.btn-hero {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero:hover {
    background-color: #0056b3;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    padding-top: 20px;
}

.hero-image-wrapper .carousel-inner {
    border-radius: 16px;
    overflow: hidden;
}

.hero-image-wrapper .carousel-item img {
    border-radius: 16px;
}

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
        min-height: 520px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .feature-box {
        min-width: 200px;
        max-width: 320px;
    }
}

/* Tablet/mobile: compact layout — shorter page */
@media (max-width: 768px) {
    .hero-section { padding: 28px 0; min-height: 85vh; }
    .hero-title { font-size: 1.85rem; margin-bottom: 12px; }
    .hero-tag { margin-bottom: 10px; }
    .hero-description { margin-bottom: 18px; }
    .hero-features { margin-bottom: 22px; gap: 10px; }
    .feature-box { min-width: 180px; max-width: 100%; font-size: 0.85rem; padding: 8px 14px; }
    .btn-hero { padding: 12px 30px; font-size: 1rem; width: 100%; text-align: center; }
    .hero-image { margin-top: 20px; }
    
    .trial-section { padding: 28px 0; }
    .trial-title { margin-bottom: 24px; font-size: 2.2rem; }
    .trial-features { margin-bottom: 24px; gap: 10px; }
    .trial-feature-card { padding: 12px; }
    .trial-image-wrapper { margin-top: 12px; }
    .trial-form-container { padding: 24px 18px; }
    
    .courses-section { padding: 28px 0; }
    .courses-title { margin-bottom: 22px; }
    .course-content { padding: 16px; }
    .course-image-wrapper { height: 220px; }
    
    .holiday-section { padding: 28px 0; }
    .holiday-title { margin-bottom: 22px; }
    .holiday-content { padding: 16px; }
    .holiday-image-wrapper { height: 220px; }
    
    .consultation-section { padding: 28px 0; }
    .consultation-block { padding: 24px 18px; gap: 16px; }
    
    .lessons-section { padding: 24px 0; }
    .lessons-header { margin-bottom: 18px; }
    .lesson-feature-card { padding: 14px; gap: 8px; }
    
    .about-section { padding: 28px 0; }
    .about-header { margin-bottom: 22px; }
    .about-card-content { padding: 16px; }
    
    .pricing-section { padding: 28px 0 0 0; }
    .pricing-header { margin-bottom: 22px; }
    .pricing-tabs { margin-bottom: 20px; }
    
    .bonus-section { padding: 20px 0 28px 0; }
    .bonus-title { margin-bottom: 22px; }
    
    .branches-section { padding: 28px 0; }
    .branches-header { margin-bottom: 22px; }
    .branches-map-container { height: 280px; }
    .branch-address-item { padding: 12px; }
    
    .reviews-section { padding: 28px 0; }
    .reviews-header { margin-bottom: 22px; }
    .review-card { height: 220px; }
    
    .signup-section { padding: 28px 0; margin-top: 24px; }
    .signup-title { margin-bottom: 12px; }
    .signup-description { margin-bottom: 14px; }
    .signup-form-container { padding: 24px 18px; margin-top: 18px; }
    
    .faq-section { padding: 28px 0; }
    .faq-title { margin-bottom: 8px; }
    .faq-subtitle { margin-bottom: 10px; }
    .faq-accordion { gap: 8px; }
    .faq-question { padding: 14px 18px; padding-right: 48px; }
    .faq-item.active .faq-answer { padding: 12px 18px; }
    
    .site-footer { padding: 24px 0 14px; }
    .footer-content { margin-bottom: 18px; gap: 14px; }
}


@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-title-dark,
    .hero-title-blue {
        display: inline;
    }
}

/* Mobile compact: ещё короче лендинг на телефонах */
@media (max-width: 576px) {
    .hero-section { padding: 16px 0; }
    .hero-title { margin-bottom: 10px; font-size: 1.6rem; }
    .hero-tag { margin-bottom: 8px; padding: 5px 12px; font-size: 0.85rem; }
    .hero-description { margin-bottom: 12px; font-size: 0.95rem; }
    .hero-features { margin-bottom: 14px; gap: 8px; }
    .feature-box { padding: 6px 12px; font-size: 0.8rem; }
    .hero-image-wrapper { padding-top: 10px; }
    
    .trial-section { padding: 16px 0; }
    .trial-title { margin-bottom: 14px; font-size: 1.75rem; }
    .trial-features { margin-bottom: 14px; gap: 8px; }
    .trial-feature-card { padding: 10px; }
    .trial-image-wrapper { margin-top: 10px; }
    .trial-form-container { padding: 16px 14px; }
    .trial-form-description { margin-bottom: 10px; font-size: 0.9rem; }
    .trial-form-price { margin-bottom: 10px; font-size: 0.9rem; }
    .trial-form .form-group { margin-bottom: 10px; }
    
    .courses-section { padding: 16px 0; }
    .courses-title { margin-bottom: 14px; font-size: 1.5rem; }
    .course-content { padding: 12px; }
    .course-title { font-size: 1rem; }
    .course-description { font-size: 0.85rem; line-height: 1.4; }
    .course-image-wrapper { height: 200px; }
    
    .holiday-section { padding: 16px 0; }
    .holiday-title { margin-bottom: 14px; font-size: 1.5rem; }
    .holiday-content { padding: 12px; }
    .holiday-card-title { font-size: 1rem; }
    .holiday-description { font-size: 0.85rem; line-height: 1.4; }
    .holiday-image-wrapper { height: 200px; }
    
    .consultation-section { padding: 16px 0; }
    .consultation-block { padding: 14px 12px; gap: 12px; }
    .consultation-title { font-size: 1.5rem; }
    .consultation-description { font-size: 0.9rem; }
    
    .lessons-section { padding: 14px 0; }
    .lessons-header { margin-bottom: 12px; }
    .lessons-title { font-size: 1.5rem; }
    .lesson-feature-card { padding: 10px; gap: 8px; }
    .lesson-feature-text { font-size: 0.9rem; }
    
    .about-section { padding: 16px 0; }
    .about-header { margin-bottom: 14px; }
    .about-title { font-size: 1.5rem; }
    .about-cards { gap: 12px; }
    .about-card-content { padding: 12px; }
    
    .pricing-section { padding: 16px 0 0 0; }
    .pricing-header { margin-bottom: 14px; }
    .pricing-title { font-size: 1.5rem; }
    .pricing-tabs { margin-bottom: 14px; }
    .pricing-cards { gap: 12px; }
    
    .bonus-section { padding: 12px 0 16px 0; }
    .bonus-title { margin-bottom: 14px; font-size: 1.5rem; }
    .bonus-features { gap: 12px; }
    
    .branches-section { padding: 16px 0; }
    .branches-header { margin-bottom: 14px; }
    .branches-title { font-size: 1.5rem; }
    .branches-map-container { height: 240px; }
    .branches-addresses-wrapper { max-height: 260px; }
    .branch-address-item { padding: 10px; font-size: 0.9rem; }
    
    .reviews-section { padding: 16px 0; }
    .reviews-header { margin-bottom: 14px; }
    .reviews-title { font-size: 1.5rem; }
    .review-card { height: 200px; padding: 12px; }
    .review-text { font-size: 0.85rem; }
    
    .signup-section { padding: 16px 0; margin-top: 16px; }
    .signup-section .row { min-height: auto; }
    .signup-title { margin-bottom: 10px; font-size: 1.5rem; }
    .signup-description { margin-bottom: 12px; font-size: 0.9rem; }
    .signup-form-container { padding: 16px 14px; margin-top: 14px; }
    .signup-form { gap: 10px; }
    
    .faq-section { padding: 16px 0; }
    .faq-title { margin-bottom: 4px; font-size: 1.5rem; }
    .faq-subtitle { margin-bottom: 8px; font-size: 0.9rem; }
    .faq-accordion { gap: 6px; }
    .faq-question { padding: 10px 14px; padding-right: 42px; font-size: 0.9rem; }
    .faq-item.active .faq-answer { padding: 10px 14px; font-size: 0.9rem; }
    
    .site-footer { padding: 16px 0 12px; }
    .footer-content { margin-bottom: 14px; gap: 12px; }
}

/* Trial Lesson Section Styles */
.trial-section {
    background-color: #f0f8ff;
    background-image: 
        linear-gradient(90deg, rgba(224, 242, 247, 0.3) 1px, transparent 1px),
        linear-gradient(rgba(224, 242, 247, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(224, 242, 247, 0.4) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 20px 20px;
    background-position: 0 0, 0 0, 0 0;
    padding: 80px 0;
}


.trial-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #212529;
}

.trial-title-text {
    color: #212529;
}

.trial-title-highlight {
    display: inline-block;
    background-color: #ff8c00;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    margin-top: 10px;
}

.trial-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.trial-feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trial-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trial-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff8c00;
    border-radius: 10px;
    background-color: #ffffff;
    color: #ff8c00;
    font-size: 22px;
    flex-shrink: 0;
}

.trial-feature-text {
    color: #212529;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.trial-image-wrapper {
    margin-top: 20px;
}

.trial-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    object-fit: cover;
}


.trial-form-container {
    background-color: #ff8c00;
    border-radius: 30px;
    padding: 40px;
    position: sticky;
    top: 20px;
}

.trial-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.trial-form-title {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.trial-robot-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #007bff;
    margin-left: 15px;
    flex-shrink: 0;
}

.trial-form-description {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.trial-form-price {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: inline-block;
}

.trial-form-price strong {
    color: #fff;
    font-size: 1.15rem;
}

.trial-form .form-group {
    margin-bottom: 20px;
}

.trial-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #212529;
    transition: border-color 0.3s ease;
}

.trial-input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.trial-input::placeholder {
    color: #999999;
}

.trial-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.trial-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: #007bff;
    cursor: pointer;
}

.trial-consent-text {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
}

.btn-trial-submit {
    width: 100%;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-trial-submit:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Trial Section Responsive */
@media (max-width: 992px) {
    .trial-section {
        padding: 60px 0;
    }
    
    .trial-content {
        margin-bottom: 40px;
    }
    
    
    .trial-form-container {
        position: relative;
        top: 0;
    }
    
    .trial-title {
        font-size: 2.5rem;
    }
    
    .trial-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .trial-section {
        padding: 40px 0;
    }
    
    .trial-title {
        font-size: 2rem;
    }
    
    .trial-form-container {
        padding: 30px 20px;
    }
    
    .trial-form-title {
        font-size: 1.5rem;
    }
    
    .trial-robot-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .trial-feature-card {
        padding: 15px;
    }
    
    .trial-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 18px;
    }
    
    .trial-feature-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .trial-title {
        font-size: 1.75rem;
    }
    
    .trial-title-highlight {
        margin-top: 10px;
    }
    
    .trial-form-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .trial-robot-icon {
        margin-left: 0;
        margin-top: 0;
    }
}

/* Courses Section Styles */
.courses-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.courses-title {
    font-size: 3rem;
    font-weight: 900;
    color: #212529;
    margin-bottom: 40px;
}

.courses-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.courses-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.courses-slider::-webkit-scrollbar {
    display: none;
}

.course-card {
    width: calc(42.5% - 15px);
    min-width: calc(42.5% - 15px);
    max-width: calc(42.5% - 15px);
    background-color: #EEF8FF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.course-image-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.course-age-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #ff8c00;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.course-age-badge--corporate {
    background-color: #2196F3;
    font-size: 0.75rem;
    padding: 6px 12px;
}

.course-content {
    padding: 25px;
}

.course-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.course-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.course-arrow-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: #ff8c00;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.course-arrow-btn:hover {
    background-color: #e67e00;
    transform: scale(1.1);
    color: #ffffff;
}

.course-arrow-btn i {
    font-size: 18px;
}

.course-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #ff8c00;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
    background-color: #e67e00;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn i {
    font-size: 24px;
    color: #ffffff;
}

.slider-btn-prev {
    left: -25px;
}

.slider-btn-next {
    right: -25px;
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Courses Section Responsive */
@media (max-width: 1200px) {
    .courses-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .courses-section {
        padding: 60px 0;
    }
    
    .courses-title {
        font-size: 2rem;
    }
    
    .slider-btn-prev {
        left: 10px;
    }
    
    .slider-btn-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .courses-section {
        padding: 40px 0;
    }
    
    .courses-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .courses-slider {
        gap: 20px;
    }
    
    .course-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .course-image-wrapper {
        height: 320px;
    }
    
    .course-content {
        padding: 20px;
    }
    
    .course-title {
        font-size: 1.2rem;
    }
    
    .course-description {
        font-size: 0.9rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn i {
        font-size: 20px;
    }
}

/* Programming Courses Slider - Desktop: 2 cards centered, Mobile: carousel */
@media (min-width: 1024px) {
    #programmingSlider {
        overflow-x: visible;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    #programmingSlider .course-card {
        width: calc(50% - 15px);
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    #prevBtnProgramming,
    #nextBtnProgramming {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

@media (max-width: 1023px) {
    #programmingSlider {
        overflow-x: auto;
    }
    
    #programmingSlider .course-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    #prevBtnProgramming,
    #nextBtnProgramming {
        display: flex;
    }
}

/* Holiday Schools Section Styles */
.holiday-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.holiday-title {
    font-size: 3rem;
    font-weight: 900;
    color: #212529;
    margin-bottom: 40px;
}

.holiday-slider-wrapper {
    position: relative;
}

.holiday-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.holiday-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.holiday-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.holiday-image-wrapper {
    position: relative;
    width: 100%;
    height: 307px;
    overflow: hidden;
}

.holiday-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.holiday-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
}

.holiday-badge-top {
    background-color: rgba(255, 255, 255, 0.9);
    color: #212529;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: auto;
}

.holiday-badge-info {
    background-color: rgba(255, 255, 255, 0.95);
    color: #212529;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.holiday-badge-info i {
    font-size: 14px;
}

.holiday-content {
    padding: 25px;
}

.holiday-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.holiday-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.holiday-arrow-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: #ff8c00;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.holiday-arrow-btn:hover {
    background-color: #e67e00;
    transform: scale(1.1);
    color: #ffffff;
}

.holiday-arrow-btn i {
    font-size: 18px;
}

.holiday-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.holiday-slider-btn {
    display: none;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #ff8c00;
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.holiday-slider-btn:hover {
    background-color: #e67e00;
    transform: translateY(-50%) scale(1.1);
}

.holiday-slider-btn i {
    font-size: 24px;
    color: #ffffff;
}

.holiday-slider-btn-prev {
    left: -25px;
}

.holiday-slider-btn-next {
    right: -25px;
}

.holiday-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lesson-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Holiday Section Responsive */
@media (max-width: 1200px) {
    .holiday-title {
        font-size: 2.5rem;
    }
    
    .holiday-slider {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .holiday-section {
        padding: 60px 0;
    }
    
    .holiday-title {
        font-size: 2rem;
    }
    
    .holiday-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .holiday-section {
        padding: 40px 0;
    }
    
    .holiday-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .holiday-slider-wrapper {
        overflow: hidden;
    }
    
    .holiday-slider {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        grid-template-columns: none;
    }
    
    .holiday-slider::-webkit-scrollbar {
        display: none;
    }
    
    .holiday-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
    }
    
    .holiday-image-wrapper {
        height: 307px;
    }
    
    .holiday-content {
        padding: 20px;
    }
    
    .holiday-card-title {
        font-size: 1.2rem;
    }
    
    .holiday-description {
        font-size: 0.9rem;
    }
    
    .holiday-slider-btn {
        display: flex;
    }
    
    .holiday-slider-btn-prev {
        left: 10px;
    }
    
    .holiday-slider-btn-next {
        right: 10px;
    }
    
    .holiday-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .holiday-slider-btn i {
        font-size: 20px;
    }
}

/* Consultation Section Styles */
.consultation-section {
    padding: 80px 0;
    background-color: #f0f8ff;
}

.consultation-block {
    background-color: #2196F3;
    background-image: 
        linear-gradient(90deg, rgba(91, 192, 248, 0.3) 1px, transparent 1px),
        linear-gradient(rgba(91, 192, 248, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(91, 192, 248, 0.4) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 20px 20px;
    background-position: 0 0, 0 0, 0 0;
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.consultation-text-section {
    flex: 1;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consultation-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.consultation-title-line1 {
    color: #ffffff;
    display: block;
}

.consultation-title-line2 {
    color: #ffffff;
    background-color: #5BC0F8;
    padding: 8px 25px;
    border-radius: 50px;
    display: inline-block;
    width: fit-content;
    margin-top: 5px;
}

.consultation-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    max-width: 450px;
}

.consultation-image-section {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.consultation-image-placeholder {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.consultation-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.consultation-form-section {
    flex: 1;
    max-width: 400px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultation-input {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #212529;
    transition: box-shadow 0.3s ease;
}

.consultation-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.consultation-input::placeholder {
    color: #999999;
}

.consultation-submit-btn {
    width: 100%;
    background-color: #FF9800;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.consultation-submit-btn:hover {
    background-color: #F57C00;
    transform: translateY(-2px);
}

.consultation-consent {
    margin-top: 5px;
}

.consultation-consent-text {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.consultation-link {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.6);
    transition: text-decoration-color 0.3s ease;
}

.consultation-link:hover {
    text-decoration-color: #ffffff;
}
.lesson-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Consultation Section Responsive */
@media (max-width: 1200px) {
    .consultation-block {
        padding: 40px 50px;
        gap: 30px;
    }
    
    .consultation-title {
        font-size: 3rem;
    }
    
    .consultation-image-placeholder {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 992px) {
    .consultation-section {
        padding: 60px 0;
    }
    
    .consultation-block {
        flex-direction: column;
        padding: 40px;
        gap: 30px;
    }
    
    .consultation-text-section {
        width: 100%;
        text-align: center;
    }
    
    .consultation-title {
        align-items: center;
    }
    
    .consultation-description {
        max-width: 100%;
        text-align: left;
    }
    
    .consultation-image-section {
        order: 2;
    }
    
    .consultation-form-section {
        max-width: 100%;
        width: 100%;
        order: 3;
    }
    
    .consultation-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 40px 0;
    }
    
    .consultation-block {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .consultation-title {
        font-size: 1.5rem;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .consultation-title-line1 {
        display: inline-block;
    }
    
    .consultation-title-line2 {
        padding: 6px 20px;
        font-size: 1.5rem;
        margin-top: 0;
    }
    
    .consultation-description {
        font-size: 0.95rem;
    }
    
    .consultation-image-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .consultation-consent-text {
        font-size: 0.8rem;
    }
}

/* How Lessons Work Section Styles */
.lessons-section {
    background-color: #FF9800;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px, 20px 20px;
    background-position: 0 0, 0 0;
    padding: 40px 0;
    position: relative;
}

.lessons-header {
    margin-bottom: 25px;
}

.lessons-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0;
}

.lessons-title-text {
    color: #ffffff;
}

.lessons-title-highlight {
    background-color: #D2B48C;
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 50px;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lessons-content {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.lessons-video-wrapper {
    flex: 1.5;
    min-width: 0;
    max-width: 800px;
    margin: 0 auto;
}

.lessons-video-container {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lessons-video-title-wrapper {
    text-align: center;
}

.lessons-video-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    line-height: 1.3;
}

.lessons-video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.lessons-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.lessons-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    height: 100%;
    align-items: center;
}

.lesson-feature-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 500px;
    align-self: center;
}

.lesson-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.lesson-feature-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lesson-feature-icon svg {
    width: 100%;
    height: 100%;
}

.lesson-feature-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
    line-height: 1.4;
}

/* Lessons Section Responsive */
@media (max-width: 1200px) {
    .lessons-title {
        font-size: 3rem;
    }
    
    .lessons-content {
        gap: 30px;
    }
    
    .lessons-video-wrapper {
        max-width: 700px;
    }
}

@media (max-width: 992px) {
    .lessons-section {
        padding: 30px 0;
    }
    
    .lessons-title {
        font-size: 2.5rem;
    }
    
    .lessons-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .lessons-video-wrapper {
        width: 100%;
        max-width: 600px;
    }
    
    .lessons-features {
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .lessons-section {
        padding: 25px 0;
    }
    
    .lessons-header {
        margin-bottom: 20px;
    }
    
    .lessons-title {
        font-size: 2rem;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .lessons-title-highlight {
        padding: 6px 20px;
        font-size: 1.5rem;
        margin-top: 0;
    }
    
    .lesson-feature-card {
        padding: 18px;
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .lesson-feature-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .lesson-feature-text {
        font-size: 1.25rem;
    }
    
    .lessons-video-title {
        font-size: 1.5rem;
    }
    
    .lessons-video-container {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .lessons-title {
        font-size: 1.75rem;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .lessons-video-title {
        font-size: 1.3rem;
    }
    
    .lessons-video-container {
        padding: 12px;
    }
}

/* About Us Section Styles */
.about-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #212529;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.5px;
}

.btn-about-more {
    display: inline-block;
    background-color: #2196F3;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-about-more:hover {
    background-color: #1976D2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .about-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-card {
    border-radius: 20px;
    border: 3px solid #B3E5FC;
    outline: 3px solid #B3E5FC;
    outline-offset: -6px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-card-large {
    grid-column: 1 / -1;
}

.about-card-blue {
    background-color: #2196F3;
}

.about-card-orange {
    background-color: #FF9800;
}

.about-card-dark {
    background-color: #1A237E;
}

.about-card-content {
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.about-card-dark-inline .about-card-content {
    flex-wrap: nowrap;
}

.about-card-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.about-card-icon-wrapper {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 0;
}

.about-card-text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    align-items: flex-start;
}

.about-card-label {
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.95;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
}

.about-card-number-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.about-card-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -1px;
}

.about-card-unit {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.about-card-blue .about-card-unit {
    background-color: #5BC0F8;
}

.about-card-orange .about-card-unit {
    background-color: #FFB74D;
}

.about-card-dark .about-card-unit {
    background-color: #3F51B5;
}

.about-card-description {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.95;
    margin-top: 5px;
    letter-spacing: 0.2px;
}

.about-card-image {
    flex-shrink: 0;
    width: 250px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.about-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    z-index: 1;
}

.about-students-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-card-logo {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    padding-right: 0;
}

.about-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scaleX(-1);
}

/* About Section Responsive */
@media (max-width: 1200px) {
    .about-title {
        font-size: 3rem;
    }
    
    .about-card-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-cards {
        gap: 25px;
    }
    
    .about-card-content {
        padding: 20px 30px;
    }
    
    .about-card-number {
        font-size: 3rem;
    }
    
    .about-card-image {
        width: 200px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .btn-about-more {
        width: 100%;
        text-align: center;
    }
    
    .about-card-content {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .about-card-icon-wrapper-3 {
        flex-direction: unset;
    }

    
    .about-card-left {
        width: 100%;
    }
    
    .about-card-number {
        font-size: 2.5rem;
    }
    
    .about-card-unit {
        font-size: 1rem;
        padding: 6px 16px;
    }
    
    .about-card-image {
        width: 100%;
        height: 150px;
    }
    
    .about-card-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-card-content {
        padding: 20px;
    }
    
    .about-card-icon-wrapper {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
        margin-top: 0;
    }
    
    .about-card-number {
        font-size: 2rem;
    }
    
    .about-card-unit {
        font-size: 0.9rem;
        padding: 5px 12px;
    }
    
    .about-card-label {
        font-size: 0.85rem;
        height: 40px;
        line-height: 40px;
    }
    
    .about-card-description {
        font-size: 0.85rem;
    }
}

/* Pricing Section Styles */
.pricing-section {
    background-color: #f0f8ff;
    background-image: 
        linear-gradient(90deg, rgba(224, 242, 247, 0.3) 1px, transparent 1px),
        linear-gradient(rgba(224, 242, 247, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(224, 242, 247, 0.4) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 20px 20px;
    background-position: 0 0, 0 0, 0 0;
    padding: 80px 0 0 0;
    position: relative;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #212529;
    margin: 0;
    line-height: 1.2;
}

.pricing-bonus {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    padding: 10px 15px;
    position: absolute;
    top: 0;
    right: 0;
}

.pricing-bonus-icon {
    font-size: 2.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.pricing-bonus-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing-bonus-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.4;
}

.pricing-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pricing-tab {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pricing-tab:hover {
    border-color: #007bff;
    color: #007bff;
}

.pricing-tab.active {
    background-color: #ffffff;
    border: 2px solid #007bff;
    color: #007bff;
}

.pricing-content {
    position: relative;
}

.pricing-tab-content {
    display: none;
}

.pricing-tab-content.active {
    display: block;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 3px solid #b0b0b0;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.pricing-card-featured {
    background-color: #007bff;
    color: #ffffff;
    border: 3px solid #0056b3;
}

.pricing-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 10px;
}

.pricing-card-featured .pricing-card-title {
    color: #ffffff;
}

.pricing-card-age {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 8px;
}

.pricing-card-featured .pricing-card-age {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card-lessons {
    font-size: 1.2rem;
    color: #212529;
    margin-bottom: 20px;
    font-weight: 500;
}

.pricing-card-featured .pricing-card-lessons {
    color: #ffffff;
}

.pricing-card-price-wrapper {
    position: relative;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pricing-discount-badge {
    position: absolute;
    top: -8px;
    left: 10px;
    background-color: #ff8c00;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    z-index: 2;
}

.pricing-price-box {
    background-color: #2196F3;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    width: 100%;
    position: relative;
}

.pricing-price-box-featured {
    background-color: #ffffff;
}

.pricing-price-current {
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 5px;
}

.pricing-card-featured .pricing-price-current {
    color: #2196F3;
}

.currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.pricing-card-featured .currency {
    color: #2196F3;
}

.pricing-price-original {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: line-through;
    margin-top: 5px;
}

.pricing-card-featured .pricing-price-original {
    color: rgba(33, 150, 243, 0.7);
}

.pricing-price-per-lesson {
    font-size: 1.1rem;
    color: #212529;
    text-align: left;
    font-weight: 500;
}

.pricing-card-featured .pricing-price-per-lesson {
    color: #ffffff;
}

/* Pricing Section Responsive */
@media (max-width: 1200px) {
    .pricing-title {
        font-size: 3rem;
    }
    
    .pricing-cards {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .pricing-section {
        padding: 60px 0 0 0;
    }
    
    .pricing-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-bonus {
        position: relative;
        align-self: flex-start;
        top: auto;
        right: auto;
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-tabs {
        flex-wrap: wrap;
    }
    
    .pricing-tab {
        flex: 1 1 calc(50% - 8px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 0 0 0;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-bonus-text {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .pricing-bonus-icon {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .pricing-tab {
        font-size: 1.1rem;
        padding: 10px 20px;
        flex: 1 1 100%;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-card-title {
        font-size: 1.6rem;
    }
    
    .pricing-card-lessons {
        font-size: 1.1rem;
    }
    
    .pricing-price-current {
        font-size: 2rem;
    }
    
    .currency {
        font-size: 1.3rem;
    }
    
    .pricing-price-original {
        font-size: 1.1rem;
    }
    
    .pricing-price-per-lesson {
        font-size: 1rem;
    }
    
    .pricing-discount-badge {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .pricing-title {
        font-size: 1.75rem;
    }
    
    .pricing-bonus {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .pricing-bonus-text {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .pricing-price-current {
        font-size: 1.8rem;
    }
    
    .currency {
        font-size: 1.2rem;
    }
    
    .pricing-card-title {
        font-size: 1.4rem;
    }
    
    .pricing-card-lessons {
        font-size: 1rem;
    }
    
    .pricing-price-original {
        font-size: 1rem;
    }
    
    .pricing-price-per-lesson {
        font-size: 0.95rem;
    }
    
    .pricing-tab {
        font-size: 1rem;
    }
    
    .pricing-discount-badge {
        font-size: 0.9rem;
    }
}

/* Bonus Features Section Styles */
.bonus-section {
    background-color: #F0F8FF;
    padding: 30px 0 80px 0;
}

.bonus-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0056b3;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 20px;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: center;
}

.bonus-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.bonus-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bonus-feature-icon i {
    font-size: 2rem;
    color: #2196F3;
}

.bonus-feature-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0056b3;
    margin: 0;
    line-height: 1.3;
}

.bonus-feature-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}


/* Bonus Section Responsive */
@media (max-width: 1200px) {
    .bonus-title {
        font-size: 3rem;
    }
    
    .bonus-features {
        gap: 30px 15px;
    }
    
    .bonus-feature-title {
        font-size: 1.1rem;
    }
    
    .bonus-feature-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .bonus-section {
        padding: 25px 0 60px 0;
    }
    
    .bonus-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
    
    .bonus-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 768px) {
    .bonus-section {
        padding: 20px 0 40px 0;
    }
    
    .bonus-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .bonus-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bonus-feature-item {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .bonus-feature-content {
        width: 100%;
    }
    
    .bonus-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .bonus-feature-icon i {
        font-size: 2rem;
    }
    
    .bonus-feature-title {
        font-size: 1.2rem;
    }
    
    .bonus-feature-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .bonus-title {
        font-size: 1.75rem;
    }
    
    .bonus-feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .bonus-feature-icon i {
        font-size: 1.75rem;
    }
    
    .bonus-feature-title {
        font-size: 1.1rem;
    }
    
    .bonus-feature-subtitle {
        font-size: 0.85rem;
    }
}

/* Branches Section Styles */
.branches-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.branches-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.branches-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #212529;
    margin: 0;
    line-height: 1.2;
}

.branches-city-btn {
    background-color: #E3F2FD;
    color: #2196F3;
    border: 2px solid #2196F3;
    border-radius: 12px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.branches-city-btn:hover {
    background-color: #2196F3;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.branches-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.branches-map-wrapper {
    position: relative;
}

.branches-map-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.branches-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

#branches-map {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.branches-map-link-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.branches-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.branches-map-link-wrapper:hover .branches-map-image {
    transform: scale(1.05);
}

.branches-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(33, 150, 243, 0.7), rgba(33, 150, 243, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    gap: 10px;
}

.branches-map-link-wrapper:hover .branches-map-overlay {
    opacity: 1;
}

.branches-map-overlay i {
    font-size: 3rem;
}

.branches-map-overlay span {
    text-align: center;
    padding: 0 20px;
}

.branches-addresses-wrapper {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    max-height: 600px;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.branches-addresses-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.branch-address-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.branch-address-item:hover {
    background-color: #E3F2FD;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.branch-address-item.active {
    background-color: #2196F3;
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.branch-address-item.active .branch-number {
    color: #ffffff;
}

.branch-address-item.active .branch-name {
    color: #ffffff;
}

.branch-address-item.active .branch-address {
    color: rgba(255, 255, 255, 0.9);
}

.branch-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #2196F3;
    min-width: 40px;
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}

.branch-address-content {
    flex: 1;
}

.branch-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
}

.branch-address {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Scrollbar styling for addresses list */
.branches-addresses-wrapper::-webkit-scrollbar {
    width: 8px;
}

.branches-addresses-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.branches-addresses-wrapper::-webkit-scrollbar-thumb {
    background: #2196F3;
    border-radius: 10px;
}

.branches-addresses-wrapper::-webkit-scrollbar-thumb:hover {
    background: #1976D2;
}

/* Responsive styles for branches section */
@media (max-width: 992px) {
    .branches-content {
        grid-template-columns: 1fr;
    }
    
    .branches-map-container {
        height: 500px;
    }
    
    .branches-addresses-wrapper {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .branches-title {
        font-size: 2.5rem;
    }
    
    .branches-city-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .branches-map-container {
        height: 400px;
    }
    
    .branches-addresses-wrapper {
        max-height: 400px;
    }
    
    .branch-address-item {
        padding: 15px;
    }
    
    .branch-number {
        font-size: 1.25rem;
        min-width: 35px;
    }
    
    .branch-name {
        font-size: 1rem;
    }
    
    .branch-address {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .branches-title {
        font-size: 2rem;
    }
    
    .branches-header {
        gap: 15px;
    }
    
    .branches-map-container {
        height: 350px;
    }
    
    .branches-addresses-wrapper {
        max-height: 350px;
        padding: 15px;
    }
    
    .branch-address-item {
        padding: 12px;
        gap: 15px;
    }
}

/* Reviews Section Styles */
.reviews-section {
    background-color: #ffffff;
    padding: 80px 0 0 0;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.reviews-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #212529;
    margin: 0;
    line-height: 1.2;
}

.reviews-subtitle {
    background-color: #ff8c00;
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 3.5rem;
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
}

.reviews-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.reviews-2gis-image {
    height: auto;
    max-height: 50px;
    width: auto;
    display: block;
}

.reviews-2gis-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #2196F3;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.reviews-2gis-btn:hover {
    background-color: #1976D2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.reviews-2gis-logo-wrapper {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.reviews-2gis-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.reviews-2gis-icon-fallback {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.reviews-2gis-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.reviews-nav-buttons {
    display: flex;
    gap: 10px;
}

.reviews-nav-btn {
    width: 50px;
    height: 50px;
    background-color: #E3F2FD;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2196F3;
}

.reviews-nav-btn:hover {
    background-color: #2196F3;
    color: #ffffff;
    transform: scale(1.1);
}

.reviews-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.reviews-nav-btn i {
    font-size: 24px;
}

.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    background-color: #E3F2FD;
    border-radius: 15px;
    padding: 0;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 340px;
    width: 100%;
    border: 2px solid #BBDEFB;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.review-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    display: block;
    flex-shrink: 0;
}

/* Reviews Section Responsive */
@media (max-width: 1200px) {
    .reviews-title {
        font-size: 3rem;
    }
    
    .reviews-subtitle {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-title {
        font-size: 2.5rem;
    }
    
    .reviews-subtitle {
        font-size: 2.5rem;
        padding: 6px 20px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reviews-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .reviews-subtitle {
        font-size: 2rem;
        padding: 6px 18px;
    }
    
    .reviews-2gis-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .reviews-2gis-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .reviews-2gis-logo-wrapper {
        width: 20px;
        height: 20px;
    }
    
    .reviews-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .reviews-nav-btn i {
        font-size: 20px;
    }
    
    .reviews-carousel {
        gap: 20px;
    }
    
    .review-card {
        padding: 0;
        height: 297px;
        width: 100%;
    }
    
    .review-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .reviews-title {
        font-size: 1.75rem;
    }
    
    .reviews-subtitle {
        font-size: 1.75rem;
        padding: 5px 15px;
    }
    
    .reviews-2gis-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .reviews-2gis-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .reviews-2gis-logo-wrapper {
        width: 18px;
        height: 18px;
    }
    
    .reviews-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .reviews-nav-btn i {
        font-size: 18px;
    }
    
    .review-card {
        padding: 0;
        height: 255px;
        width: 100%;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
    }
    
    .review-name {
        font-size: 0.95rem;
    }
    
    .review-stars i {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.85rem;
    }
}

/* Sign Up Section Styles */
.signup-section {
    background-color: #f0f8ff;
    background-image: 
        linear-gradient(90deg, rgba(224, 242, 247, 0.3) 1px, transparent 1px),
        linear-gradient(rgba(224, 242, 247, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(224, 242, 247, 0.4) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 20px 20px;
    background-position: 0 0, 0 0, 0 0;
    padding: 72px 0;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.signup-section .row {
    min-height: 500px;
    align-items: center;
}

.signup-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.signup-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.signup-title-text {
    color: #212529;
    display: inline-block;
}

.signup-title-highlight {
    background-color: #ff8c00;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 900;
    display: inline-block;
}

.signup-description {
    font-size: 1.25rem;
    color: #343a40;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
    max-width: calc(100% - 50px);
    padding-right: 50px;
}

.signup-robot-contacts-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
}

.signup-robot-image {
    flex-shrink: 0;
}

.signup-robot-img {
    max-width: 200px;
    height: auto;
    display: block;
}

.signup-contacts {
    flex: 1;
}

.signup-contacts-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.signup-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.signup-phone-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.signup-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.signup-whatsapp-icon:hover {
    color: #ffffff;
    opacity: 0.9;
    transform: scale(1.05);
}

.signup-phone,
.signup-email {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    text-decoration: none;
    display: block;
}

.signup-phone:hover,
.signup-email:hover {
    color: #007bff;
    text-decoration: none;
}

.signup-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.signup-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #212529;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.signup-social-icon i {
    font-size: 1.2rem;
    color: #999;
    opacity: 0.6;
}

/* Instagram — цветная иконка */
.signup-social-icon--instagram i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 1;
}

.signup-social-icon:hover {
    background-color: #d0d0d0;
    transform: translateY(-2px);
    text-decoration: none;
}

.signup-social-icon--instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.signup-social-icon:hover i {
    opacity: 0.8;
}

.signup-social-icon--instagram:hover i {
    -webkit-text-fill-color: #fff;
    background: none;
    opacity: 1;
}

.signup-form-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.signup-form-container {
    background-color: #ff8c00;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup-input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 15px;
    background-color: #ffffff;
    font-size: 1rem;
    color: #212529;
    outline: none;
}

.signup-input::placeholder {
    color: #999;
}

.signup-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.signup-consent {
    margin-top: 10px;
}

.signup-consent-text {
    font-size: 0.9rem;
    color: #212529;
    line-height: 1.5;
    margin: 0;
}

.signup-submit-btn {
    width: 100%;
    padding: 15px 30px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.signup-submit-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Sign Up Section Responsive */
@media (max-width: 992px) {
    .signup-section {
        padding: 54px 0;
    }
    
    .signup-title {
        font-size: 2rem;
    }
    
    .signup-form-container {
        margin-top: 40px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .signup-section {
        padding: 36px 0;
    }
    
    .signup-title {
        font-size: 2rem;
    }
    
    .signup-title-highlight {
        padding: 6px 16px;
        font-size: 0.9em;
    }
    
    .signup-description {
        font-size: 1.15rem;
        max-width: 100%;
        padding-right: 0;
    }
    
    .signup-robot-contacts-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .signup-robot-img {
        max-width: 150px;
    }
    
    .signup-contacts-title {
        font-size: 1.3rem;
    }
    
    .signup-phone,
    .signup-email {
        font-size: 1rem;
    }
    
    .signup-form-container {
        padding: 25px;
        border-radius: 20px;
    }
    
    .signup-input {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .signup-consent-text {
        font-size: 0.85rem;
    }
    
    .signup-submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .signup-title {
        font-size: 1.75rem;
    }
    
    .signup-title-highlight {
        padding: 5px 14px;
        font-size: 0.85em;
    }
    
    .signup-description {
        font-size: 1.1rem;
        max-width: 100%;
        padding-right: 0;
    }
    
    .signup-robot-contacts-wrapper {
        gap: 20px;
    }
    
    .signup-robot-img {
        max-width: 120px;
    }
    
    .signup-form-container {
        padding: 20px;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: #ffffff;
    padding: 80px 0;
}


.faq-title {
    font-size: 4rem;
    font-weight: 900;
    color: #212529;
    margin-bottom: 10px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #5BC0F8;
    margin-bottom: 15px;
    font-weight: 400;
}

.faq-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
}

.faq-contact-btn i {
    font-size: 1.2rem;
}

.faq-contact-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    color: #ffffff;
    text-decoration: none;
}


.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #007bff;
}

.faq-question {
    background-color: #ffffff;
    color: #212529;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
}

.faq-item.active .faq-question {
    background-color: #007bff;
    color: #ffffff;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}

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

.faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
    color: #212529;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 25px;
    border-radius: 0 0 12px 12px;
}

.faq-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* FAQ Section Responsive */
@media (max-width: 992px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-sidebar {  
        margin-bottom: 40px;
    }
    
    .faq-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
        padding-right: 50px;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px 20px;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 15px 18px;
        padding-right: 45px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #1A1A33;
    padding: 60px 0 30px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-column {
    align-items: flex-start;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.footer-logo-wrapper {
    flex-shrink: 0;
}

.footer-logo {
    height: 70px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    display: none;
}

.footer-description {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.0;
    margin: 0;
    text-align: left;
    flex: 1;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-description-orange {
    color: #ffffff;
}

.footer-description span {
    display: block;
    line-height: 1.2;
    margin: 0;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav li {
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: block;
    text-align: left;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-signup-btn {
    display: inline-block;
    background-color: #ff8c00;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.footer-signup-btn:hover {
    background-color: #e67e00;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-logo-column {
        grid-column: 1 / -1;
    }
    
    .footer-logo-section {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .footer-description {
        height: auto;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo-column {
        grid-column: 1;
    }
    
    .footer-logo-section {
        flex-direction: row;
        gap: 15px;
    }
    
    .footer-heading {
        margin-bottom: 15px;
    }
    
    .footer-nav {
        gap: 10px;
    }
    
    .footer-signup-btn {
        margin-top: 15px;
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 30px 0 20px;
    }
    
    .footer-content {
        gap: 25px;
        padding: 0 15px;
    }
    
    .footer-logo-section {
        gap: 12px;
        align-items: center;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .footer-description {
        font-size: 0.95rem;
        height: auto;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .footer-link {
        font-size: 0.95rem;
    }
    
    .footer-signup-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
}
