.contact-hero {
    position: relative;
    height: 35vh;     
    min-height: 200px;
    max-height: 350px; 
    background-image: url('../img/AllPageHeder.jpg'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.contact-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact-hero__content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.contact-hero__title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 3.5rem;
    font-weight: normal;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* --- Contact Details Section --- */
.contact-details-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.contact-details-container {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
}

.contact-details__title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.2rem;
    color: #333333;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: normal;
}

.contact-details__separator {
    width: 60px;
    height: 2px;
    background-color: #555555;
    border: none;
    margin: 0 auto 30px auto; 
}

.contact-details__address {
    font-style: normal; 
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 25px;
}

.contact-details__phone-fax p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555555;
    margin: 5px 0;
}

.contact-details__email p {
    margin-top: 20px;
    font-size: 1.1rem;
}
.contact-details__email a {
    color: #E63946; 
    text-decoration: none;
}
.contact-details__email a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .contact-hero {
        height: 30vh;
        min-height: 180px;
    }
    .contact-hero__title {
        font-size: 2.5rem;
    }
    .contact-details-section {
        padding: 40px 0;
    }
    .contact-details__title {
        font-size: 1.9rem;
    }
    .contact-details__address,
    .contact-details__phone-fax p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 25vh; 
        min-height: 150px;
    }
    .contact-hero__title {
        font-size: 2rem;
    }
    .contact-details__title {
        font-size: 1.7rem;
    }
    .contact-details-container {
        width: 95%;
    }
}