 
.about {
    padding: 80px 0;
}
.about .section{
    margin-bottom: 50px;
}
.about .section h2{
    margin-bottom: 40px;
    font-size: 30px;
}
.about .section p{
    margin-bottom: 30px;
    line-height: 1.4;
}
.about .section img {
    width: 100%;
    max-width: 1520px;
}
.line {
    width: 100%;  
    background-color: var( --secondary-color);
    height:150px;
}
.gallery {
    padding: 80px 0 ;
}
.gallery .gallery-container {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr ));
}
.gallery .gallery-container .gallery-item {
    overflow: hidden;
    margin: auto;
 
    cursor: pointer;
}
.gallery .gallery-container .gallery-item img {
    transition: .3s;
    max-width: 300px;
 
    height: 213px;
}
.gallery .gallery-container .gallery-item img:hover{
    transform: scale(1.4);
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20;
}
.lightbox img {
    max-width: 80%;
    max-height: 80%;
}
.lightbox.active {
    visibility: visible;
    opacity: 1;
}
.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
}
.prev { left: 10px; }
.next { right: 10px; }
.close {
    top: 135px;
    right: 44px;
    border-radius: 50%;
    width: 48px;
}