.page-contact__hero-section {
    background-color: #F4F7FB; /* Background color */
    padding-top: 10px; /* Small top padding as per rule */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #1F2D3D;
    position: relative;
    overflow: hidden;
}

.page-contact__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width for hero image */
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-contact__hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-contact__hero-title {
    color: #1F2D3D; /* Text Main */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-contact__hero-description {
    color: #1F2D3D; /* Text Main */
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-contact__hero-cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-contact__hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

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

.page-contact__info-section {
    background-color: #F4F7FB; /* Background color */
    padding: 60px 0;
    text-align: center;
}

.page-contact__info-title {
    color: #1F2D3D; /* Text Main */
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.page-contact__info-card {
    background-color: #FFFFFF; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-contact__info-icon {
    width: 200px; /* Minimum size 200x200px */
    height: 150px; /* Adjust height to maintain aspect ratio for typical icons */
    object-fit: contain;
    margin-bottom: 20px;
}

.page-contact__card-title {
    color: #2F6BFF; /* Primary color */
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-contact__card-text {
    color: #1F2D3D; /* Text Main */
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-contact__card-link {
    color: #2F6BFF; /* Primary color */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-contact__card-link:hover {
    color: #6FA3FF; /* Auxiliary color */
}

.page-contact__form-section {
    background-color: #FFFFFF; /* Card BG */
    padding: 60px 0;
    text-align: center;
}

.page-contact__form-title {
    color: #1F2D3D; /* Text Main */
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-contact__form-description {
    color: #1F2D3D; /* Text Main */
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
}

.page-contact__contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background-color: #F4F7FB; /* Background color for form area */
    text-align: left;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    font-size: 1em;
    color: #000000; /* Custom Color_1776249996415 */
    background-color: #FFFFFF;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #6FA3FF; /* Auxiliary color for placeholders */
    opacity: 0.8;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #2F6BFF; /* Primary color on focus */
    outline: none;
}

.page-contact__form-textarea {
    resize: vertical;
}

.page-contact__form-submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-contact__form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-contact__map-section {
    background-color: #F4F7FB; /* Background color */
    padding: 60px 0;
    text-align: center;
}

.page-contact__map-title {
    color: #1F2D3D; /* Text Main */
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 40px;
}

.page-contact__map-placeholder {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-contact__map-cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: #2F6BFF; /* Primary color for map CTA */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.page-contact__map-cta:hover {
    background: #6FA3FF; /* Auxiliary color on hover */
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .page-contact__hero-title {
        font-size: 2em;
    }

    .page-contact__info-title,
    .page-contact__form-title,
    .page-contact__map-title {
        font-size: 1.8em;
    }

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

    .page-contact__contact-form {
        padding: 20px;
    }

    .page-contact__hero-image,
    .page-contact__info-icon,
    .page-contact__map-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    /* Enforce mobile image responsive rules */
    .page-contact__hero-section img,
    .page-contact__info-section img,
    .page-contact__form-section img,
    .page-contact__map-section img {
        max-width: 100%;
        height: auto;
    }
}