/* ===========================
   CSS Variables
   =========================== */
:root {
    /* Colors - Logo-inspired burgundy red tones */
    --primary-color: #B64444;
    --primary-dark: #8B2A2A;
    --primary-light: #D46666;
    --secondary-color: #E8B4B4;
    --accent-color: #D4A020;
    --success-color: #27AE60;
    --text-dark: #2C1C1C;
    --text-medium: #555;
    --text-light: #777;
    --bg-light: #FFF8F5;
    --bg-white: #FFFFFF;
    --border-color: #F0D8D5;
    --shadow-color: rgba(182, 68, 68, 0.15);
    
    /* Typography */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ===========================
   Container
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #06C755 0%, #00B14F 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.btn-lg {
    padding: 18px 50px;
    font-size: 18px;
}

.btn-xl {
    padding: 22px 60px;
    font-size: 20px;
}

/* ===========================
   Section Titles
   =========================== */
.section-title-main {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    line-height: 1.4;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.title-icon {
    font-size: 40px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #B64444 0%, #8B2A2A 100%);
    background-image: 
        linear-gradient(135deg, rgba(182, 68, 68, 0.95) 0%, rgba(139, 42, 42, 0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.2) 100%);
}

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

.hero-logo {
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    animation: logoFloat 3s ease-in-out infinite;
    background: white;
    border-radius: 50%;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

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

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(212, 160, 32, 0.4);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-top: 10px;
}

.hero-description {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-cta {
    margin-bottom: 80px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8px;
}

.scroll-indicator span {
    width: 6px;
    height: 10px;
    background: white;
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(15px); }
}

/* ===========================
   Catchphrase Section
   =========================== */
.catchphrase {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
    text-align: center;
}

.catchphrase-text {
    font-size: 20px;
    line-height: 2;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto;
}

/* ===========================
   Feature Cards Section
   =========================== */
.what-you-can-do {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-color);
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(182, 68, 68, 0.25);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

.feature-card strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* ===========================
   Target Audience Section
   =========================== */
.target-audience {
    padding: var(--section-padding);
    background: white;
}

.audience-list {
    max-width: 900px;
    margin: 0 auto;
}

.audience-item {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    margin-bottom: 30px;
    transition: var(--transition-base);
    border-left: 5px solid var(--primary-color);
}

.audience-item:hover {
    background: white;
    box-shadow: 0 10px 40px var(--shadow-color);
    transform: translateX(10px);
}

.audience-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0;
    line-height: 1;
}

.audience-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.audience-content p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===========================
   Course Overview Section
   =========================== */
.course-overview {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.overview-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.overview-label {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.overview-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.overview-value .highlight {
    font-size: 48px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

.overview-value small {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

/* Schedule Box */
.schedule-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-color);
    margin-bottom: 50px;
}

.schedule-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule-items {
    margin-bottom: 40px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid var(--border-color);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-day {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.schedule-date {
    color: var(--text-medium);
    font-size: 16px;
}

.venue-info {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.venue-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.venue-info p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Pricing Box */
.pricing-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(182, 68, 68, 0.4);
}

.pricing-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(212, 160, 32, 0.5);
}

.pricing-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-original {
    font-size: 20px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.line-through {
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-special {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.pricing-arrow {
    font-size: 36px;
    font-weight: 700;
}

.pricing-amount {
    font-size: 72px;
    font-weight: 900;
    font-family: var(--font-serif);
    line-height: 1;
}

.pricing-tax {
    font-size: 18px;
}

.pricing-discount {
    display: inline-block;
    background: var(--success-color);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.pricing-includes {
    font-size: 16px;
    margin-top: 30px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 50px;
}

.cta-note {
    margin-top: 20px;
    color: var(--text-light);
    font-size: 14px;
}

/* ===========================
   Curriculum Section
   =========================== */
.curriculum {
    padding: var(--section-padding);
    background: white;
}

.curriculum-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.curriculum-day {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-color);
    transition: var(--transition-base);
}

.curriculum-day:hover {
    box-shadow: 0 10px 40px var(--shadow-color);
    background: white;
}

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

.day-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.curriculum-day h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.day-date {
    color: var(--text-light);
    font-size: 16px;
}

.curriculum-list {
    list-style: none;
}

.curriculum-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-medium);
    line-height: 1.8;
}

.curriculum-list i {
    color: var(--success-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.certification-criteria {
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.certification-criteria h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.certification-criteria p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.scoring {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.scoring span {
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* ===========================
   Support Section
   =========================== */
.support {
    padding: var(--section-padding);
    background: var(--bg-light);
}

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

.support-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(182, 68, 68, 0.25);
}

.support-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.support-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.4;
}

.support-card p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
}

/* ===========================
   Tool Kit Section
   =========================== */
.toolkit {
    padding: var(--section-padding);
    background: white;
}

.toolkit-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.toolkit-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.toolkit-item:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.toolkit-item i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.toolkit-item span {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.4;
}

.toolkit-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-light);
    font-size: 14px;
}

/* ===========================
   Philosophy Section
   =========================== */
.philosophy {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto 50px;
}

.philosophy-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px var(--shadow-color);
    border-left: 5px solid var(--primary-color);
}

.philosophy-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.philosophy-item i {
    color: var(--accent-color);
}

.philosophy-item p {
    color: var(--text-medium);
    line-height: 1.9;
}

.philosophy-conclusion {
    text-align: center;
    font-size: 20px;
    line-height: 2;
    color: var(--text-medium);
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-radius: 20px;
}

.philosophy-conclusion strong {
    color: var(--primary-color);
    font-size: 22px;
}

/* ===========================
   FAQ Section
   =========================== */
.faq {
    padding: var(--section-padding);
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px var(--shadow-color);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(182, 68, 68, 0.2);
}

.faq-question {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-color);
    transition: var(--transition-base);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 30px 69px;
    color: var(--text-medium);
    line-height: 1.9;
}

/* ===========================
   Final CTA Section
   =========================== */
.final-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.cta-line-id {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.9;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    padding: 25px;
    box-shadow: 0 6px 25px rgba(182, 68, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.footer-info {
    text-align: center;
}

.footer-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-info p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    transition: var(--transition-base);
}

.footer-link:hover {
    background: rgba(255,255,255,0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
    font-size: 14px;
}

/* ===========================
   Animations
   =========================== */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.fade-in-view.delay-1 {
    transition-delay: 0.2s;
}

.fade-in-view.delay-2 {
    transition-delay: 0.4s;
}

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

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 36px;
    }
    
    .section-title-main {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .hero-logo {
        width: 180px;
        height: 180px;
        margin-bottom: 25px;
        padding: 30px;
    }
    
    .hero-logo img {
        width: 85%;
        height: 85%;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title-main {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
        flex-direction: column;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .audience-item {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .schedule-box,
    .pricing-box {
        padding: 30px 25px;
    }
    
    .pricing-amount {
        font-size: 56px;
    }
    
    .curriculum-day {
        padding: 30px 25px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .toolkit-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-lg {
        padding: 16px 40px;
        font-size: 16px;
    }
    
    .btn-xl {
        padding: 18px 40px;
        font-size: 18px;
    }
    
    .cta-box h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
        padding: 25px;
    }
    
    .hero-logo img {
        width: 85%;
        height: 85%;
    }
    
    .footer-logo {
        width: 120px;
        height: 120px;
        padding: 20px;
    }
    
    .footer-logo img {
        width: 85%;
        height: 85%;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title-main {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .pricing-amount {
        font-size: 48px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}