.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: 465px;
    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%;
    }
}

.school-intro-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 15px;
    border: none;
    cursor: pointer;
    align-self: center;
}

.school-intro-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    opacity: 0.95;
    color: #ffffff !important;
}

.school-intro-more-btn:active {
    transform: translateY(0);
}