/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #E0F7FA 0%, #FFE0F7 50%, #FFF9C4 100%);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   Container & Section
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #1a237e;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B9D, #FFA06B);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 48px;
    line-height: 1.8;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8), rgba(255, 107, 157, 0.6)),
                url('https://englishhub.jp/wp-content/uploads/2300/12/shutterstock_1503919118.jpg') center/cover no-repeat;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.85), rgba(255, 107, 157, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-main {
    display: block;
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title-sub {
    display: block;
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(90deg, #FFE082, #FF6B9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Program Confirmed Announcement */
.program-confirmed {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: 3px solid #FF6B00;
    border-radius: 16px;
    padding: 24px 32px;
    margin: 30px auto 40px;
    max-width: 800px;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.confirmed-title {
    font-size: 24px;
    font-weight: 900;
    color: #D32F2F;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.4;
}

.confirmed-title.blink {
    animation: blink 1.5s ease-in-out infinite;
}

.confirmed-text {
    font-size: 16px;
    color: #1a237e;
    font-weight: 600;
    text-align: center;
    line-height: 1.8;
    margin: 0;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 32px rgba(255, 107, 0, 0.6);
    }
}

.hero-info {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 24px;
    opacity: 0.7;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================
   CTA Buttons
   ========================================== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

.cta-button i {
    margin-right: 8px;
}

.cta-button-hero {
    font-size: 20px;
    padding: 20px 56px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 107, 157, 0.7);
    }
}

.cta-button-large {
    font-size: 22px;
    padding: 22px 60px;
}

.cta-container {
    text-align: center;
    margin-top: 48px;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: #666;
}

/* ==========================================
   Problems Section
   ========================================== */
.problems-section {
    background: white;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.problem-card {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1F5FE 100%);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: #FF6B9D;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.2);
}

.problem-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a237e;
}

.problem-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ==========================================
   Solution Section
   ========================================== */
.solution-section {
    background: linear-gradient(135deg, #1a237e 0%, #4A148C 100%);
    color: white;
    text-align: center;
}

.solution-section .section-title {
    color: white;
}

.solution-section .section-title::after {
    background: linear-gradient(90deg, #FFE082, #FF6B9D);
}

.solution-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.solution-intro {
    max-width: 800px;
    margin: 0 auto;
}

.highlight-orange {
    color: #FFA726 !important;
    font-size: 18px !important;
    line-height: 2 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.solution-description {
    font-size: 20px !important;
}

.solution-image-wrapper {
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.solution-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   Experience Section
   ========================================== */
.experience-section {
    background: white;
}

/* Program Schedule */
.program-schedule {
    background: linear-gradient(135deg, #F3E5F5 0%, #E1F5FE 100%);
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.schedule-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.schedule-title i {
    color: #FF6B9D;
    font-size: 32px;
}

.schedule-days {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.schedule-day {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.schedule-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.day-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid #FF6B9D;
}

.day-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.day-header h4 {
    font-size: 20px;
    color: #1a237e;
    font-weight: 700;
    margin: 0;
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #4CAF50;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: #e8f5e9;
    transform: translateX(5px);
}

.timeline-item.highlight {
    background: #FFF3E0;
    border-left-color: #FF9800;
}

.timeline-item.highlight:hover {
    background: #FFE0B2;
}

.timeline-item.evening {
    background: #E8EAF6;
    border-left-color: #5C6BC0;
}

.timeline-item.evening:hover {
    background: #C5CAE9;
}

.timeline-item .time {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    min-width: 90px;
    padding-top: 2px;
    flex-shrink: 0;
}

.timeline-item .activity {
    flex: 1;
}

.timeline-item .activity strong {
    display: block;
    font-size: 15px;
    color: #1a237e;
    margin-bottom: 4px;
    font-weight: 700;
}

.timeline-item .activity p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.schedule-note {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 2px solid #FFE082;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.schedule-note i {
    font-size: 24px;
    color: #FFA726;
    flex-shrink: 0;
    margin-top: 4px;
}

.schedule-note p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.schedule-note strong {
    color: #1a237e;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 24px;
}

.experience-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
    border-color: #FF6B9D;
}

.experience-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.experience-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
}

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

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

.experience-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a237e;
}

.experience-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* ==========================================
   Voice Section
   ========================================== */
.voice-section {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE0F7 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    padding: 32px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-number span {
    font-size: 32px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.review-card {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.review-avatar {
    font-size: 48px;
    margin-right: 16px;
}

.review-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 4px;
}

.review-stars {
    color: #FFB300;
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* ==========================================
   Video Section
   ========================================== */
.video-section {
    background: white;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* ==========================================
   Venue Section
   ========================================== */
.venue-section {
    background: linear-gradient(135deg, #E8EAF6 0%, #F3E5F5 100%);
}

.venue-grid {
    display: grid;
    gap: 40px;
}

.venue-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.venue-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.venue-content {
    padding: 32px;
}

.venue-content h3 {
    font-size: 14px;
    color: #FF6B9D;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.venue-content h4 {
    font-size: 24px;
    color: #1a237e;
    margin-bottom: 16px;
    font-weight: 800;
}

.venue-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.venue-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #FF6B9D;
}

.venue-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.venue-info p:last-child {
    margin-bottom: 0;
}

.venue-info i {
    margin-right: 10px;
    color: #FF6B9D;
    width: 16px;
}

/* ==========================================
   Details Section
   ========================================== */
.details-section {
    background: white;
}

.details-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.details-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 40px;
}

.details-table th,
.details-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.details-table th {
    background: linear-gradient(135deg, #E8EAF6, #F3E5F5);
    color: #1a237e;
    font-weight: 700;
    font-size: 15px;
    width: 200px;
    vertical-align: top;
}

.details-table td {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.details-table tr:last-child th,
.details-table tr:last-child td {
    border-bottom: none;
}

.details-table strong {
    color: #1a237e;
    font-weight: 700;
}

.text-small {
    font-size: 13px;
    color: #777;
}

.highlight {
    color: #FF6B9D;
    font-size: 18px;
}

.included-items {
    margin-top: 12px;
}

.included-title {
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 8px;
}

.included-items ul {
    margin-left: 20px;
    margin-top: 8px;
}

.included-items li {
    margin-bottom: 6px;
    font-size: 14px;
}

.excluded-note {
    margin-top: 12px;
    font-size: 13px;
    color: #777;
    font-style: italic;
}

.cancellation-policy {
    background: #FFF9E6;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #FFE082;
}

.cancellation-policy h3 {
    font-size: 20px;
    color: #1a237e;
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
}

.policy-table td {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #FFE082;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-table td:first-child {
    color: #555;
}

.policy-table td:last-child {
    font-weight: 700;
    color: #d32f2f;
    text-align: right;
}

/* ==========================================
   Final CTA Section
   ========================================== */
.final-cta-section {
    background: linear-gradient(135deg, #1a237e 0%, #4A148C 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.final-cta-title {
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.final-cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-note {
    margin-top: 24px;
    font-size: 15px;
    opacity: 0.9;
}

.contact-info {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-details {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 32px 20px;
}

.footer p {
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-note {
    font-size: 12px;
    opacity: 0.8;
}

/* ==========================================
   Fixed CTA Button (Mobile)
   ========================================== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

.fixed-cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
    color: white;
    padding: 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

/* ==========================================
   Responsive Design - Tablet
   ========================================== */
@media (max-width: 1024px) {
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-title-main {
        font-size: 40px;
    }
    
    .hero-title-sub {
        font-size: 48px;
    }
    
    .details-table th {
        width: 160px;
        font-size: 14px;
    }
}

/* ==========================================
   Responsive Design - Mobile
   ========================================== */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    /* Hero */
    .hero {
        min-height: 500px;
        height: 100vh;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .hero-title-main {
        font-size: 32px;
    }
    
    .hero-title-sub {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    /* Program Confirmed - Mobile */
    .program-confirmed {
        padding: 20px 16px;
        margin: 20px 16px 30px;
    }
    
    .confirmed-title {
        font-size: 18px;
    }
    
    .confirmed-text {
        font-size: 14px;
    }
    
    /* CTA Buttons */
    .cta-button {
        padding: 16px 36px;
        font-size: 16px;
    }
    
    .cta-button-hero {
        font-size: 17px;
        padding: 18px 40px;
    }
    
    .cta-button-large {
        font-size: 18px;
        padding: 18px 48px;
    }
    
    /* Grids */
    .problems-grid,
    .experience-grid,
    .stats-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Cards */
    .problem-card,
    .experience-card {
        padding: 24px 20px;
    }
    
    .problem-icon {
        font-size: 48px;
    }
    
    .experience-icon {
        font-size: 40px;
    }
    
    .experience-image {
        height: 180px;
    }
    
    .highlight-orange {
        font-size: 16px !important;
    }
    
    .solution-description {
        font-size: 17px !important;
    }
    
    .solution-image-wrapper {
        max-width: 350px;
    }
    
    /* Program Schedule Mobile */
    .program-schedule {
        padding: 24px 20px;
    }
    
    .schedule-title {
        font-size: 22px;
        flex-direction: column;
        gap: 8px;
    }
    
    .schedule-title i {
        font-size: 28px;
    }
    
    .schedule-days {
        grid-template-columns: 1fr;
    }
    
    .schedule-day {
        padding: 20px;
    }
    
    .day-header h4 {
        font-size: 18px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }
    
    .timeline-item .time {
        min-width: auto;
        font-size: 12px;
    }
    
    .timeline-item .activity strong {
        font-size: 14px;
    }
    
    .timeline-item .activity p {
        font-size: 12px;
    }
    
    .schedule-note {
        padding: 16px;
        flex-direction: column;
        gap: 12px;
    }
    
    .schedule-note i {
        font-size: 20px;
    }
    
    .schedule-note p {
        font-size: 13px;
    }
    
    /* Stats */
    .stat-number {
        font-size: 48px;
    }
    
    .stat-number span {
        font-size: 28px;
    }
    
    /* Venue */
    .venue-image {
        height: 200px;
    }
    
    .venue-content {
        padding: 24px;
    }
    
    .venue-content h4 {
        font-size: 20px;
    }
    
    /* Details Table */
    .details-card {
        padding: 24px 16px;
    }
    
    .details-table {
        display: block;
        overflow-x: auto;
    }
    
    .details-table th,
    .details-table td {
        display: block;
        width: 100%;
        padding: 12px 16px;
    }
    
    .details-table th {
        background: linear-gradient(135deg, #E8EAF6, #F3E5F5);
        border-bottom: none;
        padding-bottom: 8px;
    }
    
    .details-table td {
        padding-top: 8px;
        padding-bottom: 20px;
    }
    
    .cancellation-policy {
        padding: 20px;
    }
    
    .policy-table td {
        display: block;
        width: 100%;
        padding: 8px 12px;
    }
    
    .policy-table td:last-child {
        text-align: left;
        font-size: 16px;
        padding-top: 4px;
        padding-bottom: 16px;
    }
    
    /* Final CTA */
    .final-cta-title {
        font-size: 32px;
    }
    
    .final-cta-subtitle {
        font-size: 17px;
    }
    
    /* Show Fixed CTA on Mobile */
    .fixed-cta {
        display: block;
    }
    
    /* Add padding to bottom of page to avoid overlap with fixed CTA */
    .footer {
        padding-bottom: 80px;
    }
}

/* ==========================================
   Animations on Scroll
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Print Styles
   ========================================== */
@media print {
    .fixed-cta,
    .hero-scroll {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
