
.school-section {
    background: white;
    padding: 30px;
    border-radius: 5px;
}

.school-title {
    font-size: 20px;
    color: #CE8711;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
}

.school-content {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
    text-align: justify;
    margin-bottom: 30px;
}

.school-content p {
    margin-bottom: 15px;
    text-indent: 2em;
}

.school-content p:last-child {
    margin-bottom: 0;
}

.school-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.school-photo {
    aspect-ratio: 4/3;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.school-photo:hover {
    transform: scale(1.05);
}

.school-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.school-description {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
    text-align: justify;
    margin-top: 20px;
}

.school-description p {
    margin-bottom: 15px;
    text-indent: 2em;
}

@media (max-width: 768px) {
    .school-gallery { grid-template-columns: repeat(2, 1fr); }
}