/* Main section styling */
main {
    padding: 2rem;
    background-color: #f7f7f7; /* Light grey background color */
}

.service-intro {
    max-width: 800px; /* Ensure the content isn't too wide */
    margin: 0 auto;
    padding: 1rem;
    border-radius: 10px; /* Match form styling */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Match form styling */
    background-color: #ffffff; /* White background for content readability */
}

.service-intro h1 {
    font-family: 'Montserrat', sans-serif;
    color: #001A72; /* Deep blue for headings */
    font-size: 2rem; /* Adjust as needed */
    margin-bottom: 1rem;
}

.service-intro p {
    font-family: 'Poppins', sans-serif;
    color: #333333; /* Darker grey for text */
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-gallery {
    max-width: 800px; /* Ensure the gallery isn't too wide */
    margin: 2rem auto;
    padding: 1rem;
}

.service-gallery h2 {
    font-family: 'Montserrat', sans-serif;
    color: #001A72; /* Deep blue for headings */
    font-size: 1.5rem; /* Adjust as needed */
    margin-bottom: 1rem;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 1rem); /* 3 items per row with space between */
    box-sizing: border-box;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Match form styling */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Match form styling */
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}
