.content-center {
    text-align: center;
    margin: 50px 70px;
  
}

@media (max-width: 768px) { 
    .content-center {
        margin-top: 30px;
        margin-right: 10px;
        margin-left: 10px;
    }
}


.section-heading {
    font-size: 24px;
    margin-bottom: 10px;
}


.gallery-container {
    margin: 60px 70px 60px 70px;
    text-align: center;
}

#gallery-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 16px);
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .gallery-item {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 16px);
    }
    .gallery-container {
        margin: 0px 10px 30px 10px;
        text-align: center;
    }
	.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
	#lightbox-prev {
    left: 20px;
    top: 70%;
    transform: translateY(-50%);
}

#lightbox-next {
    right: 20px;
    top: 70%;
    transform: translateY(-50%);
}

}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.hidden {
    display: none;
}

#view-more-btn {
    font-family: 'Averto Regular';
    margin-top: 30px;
    border-radius: 50px;
    background: #ffaf0e;
    color: #000;
    padding: 8px 37px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    border: none;
}


#view-more-btn:hover {
    background: #5897FF;
    color:#fff;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    flex-direction: column;
}

.lightbox.hidden {
    display: none;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    margin-bottom: 20px;
    border-radius: 8px;
}

#lightbox-close,
#lightbox-prev,
#lightbox-next {
    background: white;
    border: none;
    font-size: 24px;
    color: black;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
}

#lightbox-close {
    top: 20px;
    right: 20px;
}

#lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

#lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
