.front-image {
    position: relative;
    
    overflow: hidden;
    width: 100vw;
    height: 75vh;
    object-fit: cover;
}



.front-image img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}



/* General Styles */
.responsive-section {
 
    padding: 10px 10px;
    color: gray;
    font-family: 'Quincy CF', serif;
    text-align: center;
}

.responsive-section h1 {
    font-size: 2em; /* Default size for large screens */
    line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .responsive-section {
        padding: 20px 40px; /* Reduce padding for smaller screens */
    }

    .responsive-section h1 {
        font-size: 1.5em; /* Scale down font size */
    }
}

@media (max-width: 480px) {
    .responsive-section {
        padding: 10px 20px; /* Minimal padding for very small screens */
    }

    .responsive-section h1 {
        font-size: 1.2em; /* Smaller font size for compact view */
    }
}

.image-row {
    display: flex;
    
    gap: 20px;
    flex-wrap: wrap; /* Enable wrapping for smaller screens */
    align-items: center;
    text-align: center;
}



.image-item {
    flex: 1 1 calc(33.333% - 20px); /* Set each item to take one-third of the row */
    max-width: calc(33.333% - 20px); /* Prevent items from growing too large */
    box-sizing: border-box;
}

.image-item img {
    width: 100%;
    height: auto;
    
    cursor: pointer;
    transition: transform 0.3s;
    max-width: 450px; /* Adjust the size as needed */
    
}

.image-item img:hover {
    transform: scale(1.05);
}

.image-item h2 {
    margin-top: 20px;
    font-size: 1.2em;
    color: #333;
}

/* Responsive Styles */


@media (max-width: 768px) {
    .image-item {
        flex: 1 1 100%; /* Stack items vertically */
        max-width: 100%;
    }

    .image-item h2 {
        font-size: 1em; /* Adjust font size for smaller screens */
    }
}

.content-wrapper {
    display: flex;
    
    justify-content: space-between; /* Space out text and image */
    align-items: center; /* Vertically center the items */
    gap: 20px; /* Space between text and image */
    padding: 20px;

}

.text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    
    align-items: flex-start;
    padding: 40px;
    font-family: 'spectral',sans-serif;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.15em;
}



.image-section {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: lightgray;
    padding: 100px;
}

.image-section img {
    width: 80%;
    height: auto;
    object-fit: cover;
    
}

@media (max-width:1024px){
    .content-wrapper{
        margin-top: 88px;

    }
    
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        margin-top: 0;
    }

    .text-section {
        align-items: center;
        text-align: center;
    }
    .image-section {
        padding: 70px;
    }

    .image-section img {
        width: 100%;
    }
}