/* Instagram Section Styling */
.instagram-section {
    text-align: center;
    background-color: #f4f4f4;
    padding: 40px 20px;
}

.instagram-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2a7f2e;
}

.instagram-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.instagram-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.instagram-gallery a {
    display: block;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.instagram-gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-gallery a:hover img {
    transform: scale(1.1);
}

.instagram-gallery a:hover {
    transform: scale(1.05);
}
