.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

    .photo-gallery img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
        cursor: pointer;
    }

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

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

    .lightbox-modal.active {
        display: flex;
    }

.lightbox-media {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-prev,
.lightbox-next,
.lightbox-close {
    position: absolute;
    top: 50%;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    z-index: 10000;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-close {
    top: 20px;
    right: 30px;
    transform: none;
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next,
    .lightbox-close {
        font-size: 2.5rem;
        padding: 20px;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 80%;
    }
}

.find-us-block {
    background-color: #f8f9fa; /* Matches your site's light gray background */
    color: #333; /* Standard readable dark text */
    padding: 50px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.find-us-block h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #212529;
}

.find-us-block p {
    font-size: 16px;
    margin: 8px 0;
}
