
    .school-intro-container {
        width: 100%;
        margin: 20px 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .school-intro-content {
        display: flex;
        flex-direction: column;
        /* Side by side */
        gap: 30px;
        align-items: center;
        background: #ffffff;
        padding: 20px;
        border-radius: 8px;
    }

    .intro-image img {
        width: 100%;
        height: auto;
        max-height: 385px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .intro-text {
        font-size: 16px;
        line-height: 1.8;
        font-weight: 500;
        color: #333;
        flex: 1;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .school-intro-content {
            flex-direction: column;
            /* Stacks image on top of text */
            text-align: center;
        }

        .intro-image img {
            max-width: 100%;
        }
    }
