.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

@media (max-width: 768px) {

    .about-content {
        flex-direction: column;
        gap: 25px;
    }

    .about-text {
        width: 100%;
    }

    .about-gallery {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 120px;
    }
}

@media (max-width: 480px) {

    .about-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 180px;
    }
}


