/* School Management Software - Generic CSS */
/* Responsive design with mobile-first approach */

:root {
    --school-primary: #2563eb;
    --school-secondary: #7c3aed;
    --school-accent: #10b981;
    --school-dark: #1e293b;
    --school-light: #f8fafc;
    --school-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --school-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
    --school-shadow-lg: 0 20px 60px rgba(37, 99, 235, 0.2);
}

/* ========== DESKTOP STYLES ========== */
/* Base styles apply to desktop, media queries below for mobile */

/* Hero Section */
.school-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 25%, #2563eb 50%, #7c3aed 75%, #6366f1 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    width: 100%;
}

.school-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.15)"/></svg>') repeat;
    opacity: 1;
    animation: schoolBackgroundMove 20s ease-in-out infinite;
}

@keyframes schoolBackgroundMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, -10px) scale(1.1); }
}

/* Animated Background Shapes */
.school-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.school-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: schoolFloat 15s ease-in-out infinite;
}

.school-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.school-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 3s;
}

.school-shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 10%;
    animation-delay: 6s;
}

.school-shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 9s;
}

@keyframes schoolFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

/* Floating Icons */
.school-hero-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.school-icon-float {
    position: absolute;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.2);
    animation: schoolIconFloat 20s ease-in-out infinite;
}

.school-icon-1 { top: 15%; left: 8%; animation-delay: 0s; }
.school-icon-2 { top: 25%; right: 12%; animation-delay: 2s; }
.school-icon-3 { top: 60%; left: 5%; animation-delay: 4s; }
.school-icon-4 { top: 70%; right: 8%; animation-delay: 6s; }
.school-icon-5 { top: 40%; left: 12%; animation-delay: 8s; }
.school-icon-6 { top: 50%; right: 15%; animation-delay: 10s; }

@keyframes schoolIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.4; }
}

.school-hero .school-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.school-hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.school-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Tablet Breakpoint */
@media (max-width: 992px) {
    .school-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .school-hero-visual {
        order: -1;
        height: 350px;
    }
    
    .school-hero-title-main {
        font-size: 42px;
    }
    
    .school-hero-title-sub {
        font-size: 20px;
    }
}

.school-hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: schoolBadgePulse 3s ease-in-out infinite;
}

.school-hero-badge-top i {
    color: #fbbf24;
    animation: schoolStarRotate 2s linear infinite;
}

@keyframes schoolBadgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}

@keyframes schoolStarRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.school-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.school-hero-title-main {
    display: block;
    font-size: 52px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.school-hero-title-sub {
    display: block;
    font-size: 24px;
    font-weight: 500;
    opacity: 0.9;
    color: #e0e7ff;
}

.school-hero p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.95;
    color: #e0e7ff;
}

/* Hero Highlights */
.school-hero-highlights {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.school-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.school-highlight-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.school-highlight-item i {
    font-size: 28px;
    color: #fbbf24;
}

.school-highlight-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.school-highlight-item strong {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.school-highlight-item span {
    font-size: 12px;
    opacity: 0.8;
    color: #e0e7ff;
}

.school-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    width: 100%;
}

.school-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: white;
    color: var(--school-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.school-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.school-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.school-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.school-cta-button i,
.school-cta-button span {
    position: relative;
    z-index: 1;
}

.school-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.school-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.3s;
    z-index: 0;
}

.school-btn-secondary:hover::before {
    left: 0;
}

.school-btn-secondary:hover {
    color: var(--school-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.school-btn-secondary i,
.school-btn-secondary span {
    position: relative;
    z-index: 1;
}

.school-btn-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.school-btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: white;
}

/* Hero Visual Section */
.school-hero-visual {
    position: relative;
    height: 500px;
    width: 100%;
    z-index: 3;
}

.school-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.school-image-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s;
    animation: schoolCardFloat 6s ease-in-out infinite;
}

.school-image-card-1 { animation-delay: 0s; }
.school-image-card-2 { animation-delay: 1.5s; }
.school-image-card-3 { animation-delay: 3s; }
.school-image-card-4 { animation-delay: 4.5s; }

@keyframes schoolCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.school-image-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.school-image-card i {
    font-size: 48px;
    color: #fbbf24;
}

.school-image-card span {
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-align: center;
}

/* No Advance Payment Badge */
.school-no-advance-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.3) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(16, 185, 129, 0.5);
    border-radius: 50px;
    padding: 18px 36px;
    margin: 28px 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    animation: schoolPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    width: fit-content;
}

.school-no-advance-badge i:first-child {
    font-size: 24px;
    color: #10b981;
}

.school-no-advance-badge i:last-child {
    font-size: 20px;
    color: #10b981;
    animation: schoolCheckBounce 2s ease-in-out infinite;
}

@keyframes schoolCheckBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes schoolPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3); 
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5); 
    }
}

/* No Advance Payment Highlight in Pricing */
.school-no-advance-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 24px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.school-no-advance-highlight i {
    font-size: 36px;
    color: white;
}

.school-no-advance-highlight div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.school-no-advance-highlight strong {
    font-size: 20px;
    font-weight: 700;
}

.school-no-advance-highlight span {
    font-size: 15px;
    opacity: 0.95;
}

/* No Advance Payment Note */
.school-no-advance-note {
    background: #ecfdf5;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.school-no-advance-note i {
    font-size: 24px;
    color: #10b981;
    margin-top: 2px;
}

.school-no-advance-note p {
    margin: 0;
    color: #065f46;
    font-size: 15px;
    line-height: 1.6;
}

.school-no-advance-note strong {
    color: #047857;
}

/* Marquee Section */
.school-marquee {
    background: var(--school-dark);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.school-marquee-content {
    display: inline-block;
    animation: schoolMarquee 30s linear infinite;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.school-marquee-content span {
    display: inline-block;
    margin: 0 40px;
}

@keyframes schoolMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Features Grid */
.school-features {
    padding: 80px 0;
    background: var(--school-light);
}

.school-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.school-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--school-shadow);
    transition: all 0.3s;
    text-align: center;
}

.school-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--school-shadow-lg);
}

.school-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--school-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.school-feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--school-dark);
}

.school-feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
}

/* Modules Section */
.school-modules {
    padding: 80px 0;
    background: white;
}

.school-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.school-module-card {
    background: var(--school-light);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--school-primary);
    transition: all 0.3s;
}

.school-module-card:hover {
    transform: translateX(10px);
    box-shadow: var(--school-shadow);
}

.school-module-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--school-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.school-module-card h3 i {
    color: var(--school-primary);
}

.school-module-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

.school-module-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.school-module-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.school-module-list li::before {
    content: '✓';
    color: var(--school-accent);
    font-weight: bold;
    font-size: 18px;
}

/* Pricing Section */
.school-pricing {
    padding: 80px 0;
    background: var(--school-light);
}

.school-pricing-container {
    max-width: 800px;
    margin: 50px auto 0;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--school-shadow-lg);
    text-align: center;
}

.school-price {
    font-size: 56px;
    font-weight: 700;
    color: var(--school-primary);
    margin: 20px 0;
}

.school-price-range {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 30px;
}

.school-pricing-features {
    text-align: left;
    margin: 30px 0;
}

.school-pricing-features h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--school-dark);
}

.school-pricing-list {
    list-style: none;
    padding: 0;
}

.school-pricing-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 12px;
}

.school-pricing-list li i {
    color: var(--school-accent);
    font-size: 20px;
}

/* Why Choose Section */
.school-why-choose {
    padding: 80px 0;
    background: white;
}

.school-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.school-why-card {
    text-align: center;
    padding: 30px 20px;
}

.school-why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--school-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.school-why-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--school-dark);
}

.school-why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* Contact Section */
.school-contact {
    padding: 80px 0;
    background: var(--school-gradient);
    color: white;
}

.school-contact-form {
    max-width: 600px;
    margin: 50px auto 0;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--school-shadow-lg);
}

.school-form-group {
    margin-bottom: 24px;
}

.school-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--school-dark);
}

.school-form-group input,
.school-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.school-form-group input:focus,
.school-form-group textarea:focus {
    outline: none;
    border-color: var(--school-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.school-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.school-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--school-gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.school-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* FAQ Section */
.school-faq {
    padding: 80px 0;
    background: var(--school-light);
}

.school-faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--school-shadow);
}

.school-faq-question {
    padding: 24px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--school-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.school-faq-question:hover {
    background: var(--school-light);
}

.school-faq-question i {
    color: var(--school-primary);
    transition: transform 0.3s;
}

.school-faq-item.active .school-faq-question i {
    transform: rotate(180deg);
}

.school-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.school-faq-item.active .school-faq-answer {
    max-height: 500px;
}

.school-faq-answer-content {
    padding: 0 30px 24px;
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

/* Section Headings */
.school-section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--school-dark);
    margin-bottom: 16px;
}

.school-section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Container */
.school-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== MOBILE STYLES ========== */
@media (max-width: 768px) {
    .school-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .school-hero-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .school-hero-visual {
        height: 280px;
        order: -1;
    }

    .school-hero-image-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .school-image-card {
        padding: 20px;
    }

    .school-image-card i {
        font-size: 32px;
    }

    .school-image-card span {
        font-size: 12px;
    }

    .school-hero-badge-top {
        font-size: 12px;
        padding: 6px 16px;
    }

    .school-hero h1 {
        font-size: 32px;
    }

    .school-hero-title-main {
        font-size: 32px;
    }

    .school-hero-title-sub {
        font-size: 16px;
    }

    .school-hero p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .school-hero-highlights {
        gap: 12px;
    }

    .school-highlight-item {
        padding: 12px 16px;
        gap: 8px;
    }

    .school-highlight-item i {
        font-size: 20px;
    }

    .school-highlight-item strong {
        font-size: 14px;
    }

    .school-highlight-item span {
        font-size: 11px;
    }

    .school-no-advance-badge {
        font-size: 13px;
        padding: 14px 24px;
        margin: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .school-no-advance-badge i {
        font-size: 18px;
    }

    .school-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .school-cta-button,
    .school-btn-secondary,
    .school-btn-tertiary {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
        font-size: 16px;
        justify-content: center;
    }

    .school-shape {
        display: none;
    }

    .school-icon-float {
        font-size: 24px;
    }

    .school-no-advance-highlight {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .school-no-advance-highlight i {
        font-size: 32px;
    }

    .school-no-advance-highlight strong {
        font-size: 18px;
    }

    .school-no-advance-highlight span {
        font-size: 14px;
    }

    .school-no-advance-note {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }

    .school-no-advance-note i {
        font-size: 20px;
    }

    .school-no-advance-note p {
        font-size: 14px;
    }

    .school-marquee-content {
        font-size: 14px;
    }

    .school-marquee-content span {
        margin: 0 20px;
    }

    .school-features {
        padding: 50px 0;
    }

    .school-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .school-feature-card {
        padding: 30px 20px;
    }

    .school-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .school-feature-card h3 {
        font-size: 20px;
    }

    .school-feature-card p {
        font-size: 15px;
    }

    .school-modules {
        padding: 50px 0;
    }

    .school-modules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .school-module-card {
        padding: 20px;
    }

    .school-module-card h3 {
        font-size: 18px;
    }

    .school-module-card p {
        font-size: 15px;
    }

    .school-pricing {
        padding: 50px 0;
    }

    .school-pricing-container {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .school-price {
        font-size: 42px;
    }

    .school-price-range {
        font-size: 18px;
    }

    .school-why-choose {
        padding: 50px 0;
    }

    .school-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .school-why-card {
        padding: 20px 15px;
    }

    .school-why-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .school-why-card h4 {
        font-size: 18px;
    }

    .school-why-card p {
        font-size: 14px;
    }

    .school-contact {
        padding: 50px 0;
    }

    .school-contact-form {
        padding: 25px 20px;
        margin-top: 30px;
    }

    .school-faq {
        padding: 50px 0;
    }

    .school-section-title {
        font-size: 28px;
    }

    .school-section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .school-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .school-hero h1 {
        font-size: 26px;
    }

    .school-hero p {
        font-size: 15px;
    }

    .school-features-grid,
    .school-modules-grid,
    .school-why-grid {
        grid-template-columns: 1fr;
    }

    .school-price {
        font-size: 36px;
    }

    .school-section-title {
        font-size: 24px;
    }
}

