/* Dance Class Template Styles */

/* Hero Section */
.dance-class-hero {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.dance-class-hero .container {
    position: relative;
    z-index: 2;
}

.dance-class-hero .hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero-category {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.dance-class-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.75rem;
    color: #6c757d;
}

.breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-primary-dark);
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Introduction Section */
.dance-intro {
    padding: 5rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-family: var(--font-family-heading);
}

.intro-content .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.intro-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.intro-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.intro-features .feature i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.intro-features .feature span {
    font-weight: 600;
    color: var(--color-dark);
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Class Types Section */
.class-types {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.class-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.class-type-card {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.class-type-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(103, 58, 183, 0.2);
    border: 2px solid var(--color-primary);
}

.class-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.class-type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.class-type-card p {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.class-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.class-details li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.class-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.price {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
}

.benefits-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.benefits-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.benefits-header p {
    font-size: 1.125rem;
    color: var(--color-text);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.benefit-item p {
    color: var(--color-text);
    line-height: 1.6;
}

/* Timetable Section */
.timetable-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.timetable-wrapper {
    margin-top: 3rem;
}

.timetable-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.timetable-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    overflow-x: auto;
}

.day-column {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    min-width: 200px;
}

.day-column h3 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
}

.class-slot {
    background-color: var(--color-primary-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.class-slot:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(103, 58, 183, 0.2);
}

.class-slot span {
    display: block;
    margin-bottom: 0.5rem;
}

.class-slot .time {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.875rem;
}

.class-slot .class-name {
    font-weight: 600;
    color: var(--color-dark);
}

.class-slot .teacher {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

.timetable-cta {
    text-align: center;
    margin-top: 3rem;
}

.timetable-cta p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

/* Teachers Section */
.teachers-section {
    padding: 5rem 0;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.teacher-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-5px);
}

.teacher-image {
    height: 300px;
    overflow: hidden;
}

.teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.teacher-card:hover .teacher-image img {
    transform: scale(1.05);
}

.teacher-info {
    padding: 2rem;
}

.teacher-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.teacher-title {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.teacher-info p {
    color: var(--color-text);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.faq-item h3::before {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    margin-right: 1rem;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--color-text);
    line-height: 1.6;
    padding-left: 46px;
}

/* Expect Section */
.expect-section {
    background-color: #fafafa;
    padding: 5rem 0;
    position: relative;
}

.expect-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cpath d='M0,50 Q50,0 100,50 T200,50' stroke='%23ddd' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center;
    opacity: 0.5;
}

.expect-header {
    text-align: center;
    margin-bottom: 4rem;
}

.expect-title {
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.expect-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background-color: #ddd;
    margin: 2rem auto 1rem;
}

.expect-subtitle {
    font-size: 2.25rem;
    font-weight: 400;
    color: #1a1a1a;
    font-family: var(--font-family-heading);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.expect-item {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expect-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.expect-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

.expect-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--color-primary), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0.3;
}

.expect-icon i {
    font-size: 1.5rem;
    color: #666;
    z-index: 1;
}

.expect-item-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-heading);
}

.expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expect-list li {
    position: relative;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.expect-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #999;
    font-size: 1.2rem;
    line-height: 1.4;
}

.expect-list li strong {
    color: #333;
    font-weight: 600;
}

/* Responsive Design for Expect Section */
@media (max-width: 768px) {
    .expect-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expect-section {
        padding: 3rem 0;
    }
    
    .expect-subtitle {
        font-size: 1.75rem;
    }
    
    .expect-item {
        padding: 2rem;
    }
}

/* FAQ Section - Distinct Styling */
.faq-section {
    background-color: #ffffff;
    padding: 5rem 0 6rem;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.faq-section .section-title {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 3rem;
    position: relative;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: #f8f9fa;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: var(--color-primary);
}

.faq-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: transparent;
    transition: background-color 0.3s ease;
}

.faq-accordion-header:hover {
    background-color: #fff;
}

.faq-accordion-header h3 {
    font-size: 1.125rem;
    color: var(--color-dark);
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-accordion-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.faq-accordion-icon i {
    font-size: 0.875rem;
}

.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(45deg);
}

.faq-accordion-content {
    display: none;
    padding: 0 2rem 1.5rem;
    color: #666;
    line-height: 1.8;
}

.faq-accordion-content p {
    margin: 0;
}

.faq-accordion-item.active .faq-accordion-content {
    display: block;
}

/* CTA Section - Distinctive Design */
.cta-section {
    background: #f9f9f9;
    padding: 5rem 0;
    position: relative;
    overflow: visible;
}

/* Hand-drawn border effect */
.cta-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='4'%3E%3Cpath d='M0 2 Q 25 0 50 2 T 100 2' stroke='%23333' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border: 3px solid #333;
    border-radius: 15px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
    transform: rotate(-0.5deg);
}

.cta-content::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.cta-content::after {
    content: '💃';
    position: absolute;
    bottom: -25px;
    right: 30px;
    font-size: 2.5rem;
    animation: dance 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

@keyframes dance {
    0%, 100% { transform: translateX(0) rotate(-10deg); }
    25% { transform: translateX(-10px) rotate(10deg); }
    75% { transform: translateX(10px) rotate(-10deg); }
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.cta-content h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: #FFD700;
    transform: skew(-12deg);
}

.cta-content p {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.cta-section .btn-primary {
    background: #FFD700;
    color: #1a1a1a;
    border: 3px solid #1a1a1a;
    border-radius: 50px;
    padding: 1rem 3rem;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
    transform: rotate(1deg);
}

.cta-section .btn-primary:hover {
    transform: rotate(-1deg) translateY(-2px);
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.3);
    background: #FFC700;
}

/* Decorative doodles around the section */
.cta-section {
    position: relative;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    top: 20px;
    right: 10%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23333' stroke-width='3' fill='none' stroke-dasharray='5,5'/%3E%3Cpath d='M30 50 Q 50 30 70 50' stroke='%23333' stroke-width='2' fill='none'/%3E%3Ccircle cx='35' cy='40' r='3' fill='%23333'/%3E%3Ccircle cx='65' cy='40' r='3' fill='%23333'/%3E%3C/svg%3E");
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive for CTA */
@media (max-width: 768px) {
    .cta-content {
        transform: rotate(0deg);
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
    }
    
    .cta-content::before,
    .cta-content::after {
        display: none;
    }
    
    .cta-section::after {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.class-info-column {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.class-main-title {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-family-heading);
}

.coming-soon-banner {
    background: #f8f9fa;
    color: var(--color-dark);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid var(--color-primary);
}

.coming-soon-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.coming-soon-banner p {
    margin: 0;
    opacity: 0.95;
}

.form-column {
    position: sticky;
    top: 2rem;
}

.form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
}

.form-title {
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-family-heading);
}

.form-subtitle {
    color: var(--color-text);
    margin-bottom: 2rem;
}

/* Registration Form */
.registration-form .form-group {
    margin-bottom: 1.5rem;
}

.registration-form label {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.registration-form .required {
    color: #dc3545;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.registration-form textarea {
    resize: vertical;
}

.form-submit {
    margin-top: 2rem;
}

.form-submit .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Class Details */
.class-details {
    margin: 2rem 0;
}

.class-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-label {
    font-weight: 600;
    color: var(--color-dark);
}

.detail-value {
    color: var(--color-text);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-text);
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--color-primary);
}

/* What to Expect Section */
.expect-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.expect-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.expect-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.expect-subtitle {
    font-size: 1.125rem;
    color: var(--color-text);
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.expect-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.expect-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.expect-icon i {
    font-size: 1.75rem;
    color: var(--color-primary);
}

.expect-item-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expect-list li {
    padding: 0.5rem 0;
    color: var(--color-text);
    line-height: 1.6;
}

.expect-list strong {
    color: var(--color-dark);
    display: inline-block;
    margin-right: 0.25rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-accordion-header:hover {
    background-color: var(--color-primary-light);
}

.faq-accordion-header h3 {
    font-size: 1.125rem;
    margin: 0;
    color: var(--color-dark);
    flex: 1;
    padding-right: 1rem;
}

.faq-accordion-icon {
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(45deg);
}

.faq-accordion-content p {
    color: var(--color-text);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .timetable-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-column {
        position: static;
    }
    
    .class-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .teachers-grid {
        grid-template-columns: 1fr;
    }
    
    .timetable-grid {
        grid-template-columns: 1fr;
    }
    
    .expect-grid {
        grid-template-columns: 1fr;
    }
    
    .dance-class-hero .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Mobile: Form comes first */
    .two-column-layout {
        display: flex;
        flex-direction: column;
    }
    
    .form-column {
        order: -1; /* Form appears first on mobile */
        margin-bottom: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .class-type-card.featured {
        transform: none;
    }
    
    .intro-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .dance-class-hero {
        min-height: 400px;
    }
    
    .dance-class-hero .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
}