
.school-intro {
    margin: 40px auto;
    width: 1221px;
    font-family: DM Sans, DM Sans;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #202020;
    text-align: left;
}

.school-intro p {
    text-align: justify;
    text-indent: 2em;
}

.images-grid {
    margin: 70px 0 156px;
    display: flex;
    gap: 20px;
    max-width: 1221px;
}

.left-column, .right-column {
    flex: 1;
    width: 628px;
    height: 477px;
    display: flex;
    flex-direction: column;
}

.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.left-column .image-item {
    height: 100%;
}

.right-column .image-item {
    flex: 1;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.image-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.image-item:hover img {
    transform: scale(1.05);
}

