.page-contact-us {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-contact-us__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-contact-us__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image above text */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    background-color: #F4F7FB; /* Match background */
}

.page-contact-us__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain hero image width */
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.page-contact-us__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Minimum image size */
}

.page-contact-us__hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-contact-us__main-title {
    font-size: clamp(2em, 4vw, 2.5em); /* Responsive font size for H1 */
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-contact-us__description {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

/* General Section Styling */
.page-contact-us__section-title {
    font-size: 2em;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-contact-us__section-description {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info Section */
.page-contact-us__info-section {
    padding: 40px 0;
    background-color: #F4F7FB; /* Background */
}

.page-contact-us__contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-contact-us__contact-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px; /* Ensure cards have similar height */
}

.page-contact-us__contact-icon {
    width: 100%; /* Ensure image fills card width */
    height: auto;
    max-height: 150px; /* Limit height for icons */
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-contact-us__card-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-contact-us__card-text {
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    flex-grow: 1; /* Allow text to grow */
}

.page-contact-us__phone-number {
    font-size: 1.2em;
    font-weight: bold;
    color: #2F6BFF; /* Primary color */
    margin-top: 10px;
}

.page-contact-us__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto; /* Push button to bottom */
}

.page-contact-us__button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly darker/lighter hover */
}

/* Form Section */
.page-contact-us__form-section {
    padding: 40px 0;
    background-color: #F4F7FB; /* Background */
}

.page-contact-us__contact-form {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
    max-width: 700px;
    margin: 30px auto 0;
}

.page-contact-us__form-group {
    margin-bottom: 20px;
}

.page-contact-us__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
}

.page-contact-us__form-input,
.page-contact-us__form-textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 5px;
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
    background-color: #FFFFFF; /* Card BG */
}

.page-contact-us__form-input::placeholder,
.page-contact-us__form-textarea::placeholder {
    color: #A5C4FF; /* Glow for placeholders */
}

.page-contact-us__form-textarea {
    resize: vertical;
}

.page-contact-us__submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.page-contact-us__submit-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Hover effect */
}

/* Location Section */
.page-contact-us__location-section {
    padding: 40px 0 60px;
    background-color: #F4F7FB; /* Background */
}

.page-contact-us__location-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.page-contact-us__address-block {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-contact-us__address-line {
    margin-bottom: 10px;
    color: #1F2D3D; /* Text Main */
}

.page-contact-us__working-hours-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.page-contact-us__working-hours-item {
    margin-bottom: 5px;
    color: #1F2D3D; /* Text Main */
}

.page-contact-us__map-placeholder {
    flex: 2;
    min-width: 300px;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border */
}

.page-contact-us__map-image {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-contact-us__container {
        padding: 15px;
    }

    .page-contact-us__hero-section {
        padding-bottom: 20px;
    }

    .page-contact-us__main-title {
        font-size: clamp(1.8em, 6vw, 2.2em);
    }

    .page-contact-us__description {
        font-size: 1em;
    }

    .page-contact-us__section-title {
        font-size: 1.8em;
        margin-top: 30px;
    }

    .page-contact-us__section-description {
        font-size: 1em;
    }

    .page-contact-us__contact-grid {
        grid-template-columns: 1fr;
    }

    .page-contact-us__contact-card {
        padding: 20px;
        min-height: unset;
    }

    .page-contact-us__contact-icon {
        max-height: 100px;
    }

    .page-contact-us__form-section {
        padding: 30px 0;
    }

    .page-contact-us__contact-form {
        padding: 25px;
    }

    .page-contact-us__form-input,
    .page-contact-us__form-textarea {
        width: calc(100% - 20px); /* Adjust for padding */
    }

    .page-contact-us__location-details {
        flex-direction: column;
    }

    .page-contact-us__address-block,
    .page-contact-us__map-placeholder {
        max-width: 100%;
        min-width: unset;
    }

    /* Ensure all images inside .page-contact-us are responsive */
    .page-contact-us img {
        max-width: 100%;
        height: auto;
        display: block; /* Prevent inline-block issues */
    }
}