.page-contact {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure some padding at the bottom */
}

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

.page-contact__hero-section {
    padding-top: 10px; /* Small top padding, relying on body padding for header offset */
    text-align: center;
    background-color: #F4F7FB;
    padding-bottom: 40px;
}

.page-contact__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-contact__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-contact__title {
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

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

.page-contact__details-section {
    background-color: #FFFFFF; /* Card BG */
    padding: 60px 0;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.page-contact__section-title {
    font-size: 2.2em;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-contact__section-description {
    font-size: 1.1em;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-contact__detail-item {
    background-color: #F4F7FB; /* Background */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #D6E2FF; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__detail-icon {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
    color: #2F6BFF; /* Primary color */
}

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

.page-contact__detail-text {
    color: #1F2D3D; /* Text Main */
    font-size: 1.05em;
}

.page-contact__button {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 20px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-contact__button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

.page-contact__form-section {
    background-color: #F4F7FB; /* Background */
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-contact__form-container {
    background-color: #FFFFFF; /* Card BG */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.page-contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 24px); /* Account for padding */
    padding: 12px;
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 8px;
    font-size: 1em;
    color: #1F2D3D;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #2F6BFF; /* Primary color */
    outline: none;
    box-shadow: 0 0 0 3px #A5C4FF; /* Glow */
}

.page-contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact__submit-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    align-self: flex-start; /* Align button to the left */
}

.page-contact__submit-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

.page-contact__faq-section {
    background-color: #FFFFFF; /* Card BG */
    padding: 60px 0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-contact__faq-item {
    background-color: #F4F7FB; /* Background */
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #D6E2FF; /* Border */
}

.page-contact__faq-question {
    font-size: 1.3em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-contact__faq-answer {
    color: #1F2D3D; /* Text Main */
    line-height: 1.8;
}

.page-contact__faq-answer a {
    color: #2F6BFF; /* Primary color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-contact__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-contact__title {
        font-size: 2em; /* Adjust h1 size for mobile */
    }

    .page-contact__section-title {
        font-size: 1.8em;
    }

    .page-contact__hero-image {
        margin-bottom: 20px;
    }

    .page-contact__details-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-contact__detail-item {
        padding: 25px;
    }

    .page-contact__form-input,
    .page-contact__form-textarea {
        width: calc(100% - 24px); /* Ensure full width on mobile, accounting for padding */
    }

    .page-contact__faq-question {
        font-size: 1.1em;
    }

    /* Mobile content area image constraint */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
}

/* Specific check for content area images to ensure min-size and no small icons */
.page-contact img:not(.page-contact__detail-icon) {
    min-width: 200px;
    min-height: 200px;
}

/* Ensure no CSS filter is applied to images */
.page-contact img {
    filter: none;
}