
/* Main Content Box */
.boarding-schools {
    width: 92%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.boarding-schools h1 {
    text-align: center;
    font-size: 28px;
    color: #0077cc;
    margin-bottom: 10px;
}

.boarding-schools p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.boarding-schools h2,h3,h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #0077cc;
    border-bottom: 2px solid #0077cc;
    display: inline-block;
    padding-bottom: 4px;
}

.boarding-schools ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.boarding-schools li {
    margin-bottom: 6px;
}

.highlight-box {
    background: #eaf4ff;
    padding: 15px;
    border-left: 4px solid #0077cc;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* Top Schools Grid */
.top-schools {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* School Card Design */
.school-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border-left: 5px solid #0077cc;
}

.school-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.school-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0077cc;
}

.school-card p {
    font-size: 14px;
    margin-bottom: 6px;
}

.card-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.card-buttons .btn {
    flex: 1;
    padding: 8px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background: #0077cc;
    color: #fff;
    transition: 0.3s;
}

.card-buttons .btn:last-child {
    background: #00a86b;
}

.card-buttons .btn:hover {
    opacity: 0.85;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .boarding-schools {
        padding: 20px;
    }

    .boarding-schools h1 {
        font-size: 22px;
    }

    .top-schools {
        grid-template-columns: 1fr;
    }

    .card-buttons {
        flex-direction: column;
    }
}
