.page-contact {
    max-width: 1390px; /* Aligns with boxed layout */
    margin: 0 auto;
    padding: 10px 15px 40px; /* Small top padding, good side padding, generous bottom */
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal overflow */
    color: #333; /* Default text color */
}

/* Hero Section */
.page-contact__hero-section {
    margin-bottom: 40px;
    padding-top: 10px; /* Small top padding for the first section */
}

.page-contact__hero-banner {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.page-contact__hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5; /* 1920x600 is roughly 16:5 */
    object-fit: cover;
    object-position: center;
    min-width: 200px; /* Ensure hero image is not too small */
    min-height: 62.5px; /* 200 * (600/1920) = 62.5 */
}

.page-contact__hero-content {
    text-align: center;
    padding: 20px 0;
}

.page-contact__main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #26A9E0; /* Primary color */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* General Section Styling */
.page-contact__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #26A9E0; /* Primary color */
    position: relative;
    padding-bottom: 10px;
}

.page-contact__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #EA7C07; /* Login orange for accent */
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-contact__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Info Section */
.page-contact__info-section {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 50px 0;
    margin-bottom: 40px;
}

.page-contact__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-contact__info-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__card-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #26A9E0; /* Primary color */
    margin-bottom: 15px;
}

.page-contact__card-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-contact__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-align: center;
    width: fit-content;
    margin-top: 10px;
    cursor: pointer;
}

.page-contact__btn--email,
.page-contact__btn--phone {
    background-color: #26A9E0; /* Primary color */
    color: #FFFFFF;
}

.page-contact__btn--email:hover,
.page-contact__btn--phone:hover {
    background-color: #1a8ccb; /* Darker primary */
    transform: translateY(-2px);
}

.page-contact__btn--chat {
    background-color: #EA7C07; /* Login orange */
    color: #FFFFFF;
}

.page-contact__btn--chat:hover {
    background-color: #cc6a00; /* Darker orange */
    transform: translateY(-2px);
}

.page-contact__social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.page-contact__social-icon {
    font-size: 0.9rem;
    padding: 0 10px;
    border-radius: 8px;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #26A9E0; /* Primary color */
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__social-icon:hover {
    background-color: #1a8ccb;
    transform: translateY(-2px);
}

/* Contact Form Section */
.page-contact__form-section {
    padding: 50px 0;
    margin-bottom: 40px;
}

.page-contact__form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.page-contact__form-content {
    text-align: center;
}

.page-contact__form-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    min-width: 200px; /* Enforce min size */
    min- /* 600*(450/600) = 450, 200*0.75=150 */
}

.page-contact__form-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.page-contact__contact-form {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

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

.page-contact__form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 1rem;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background-color: #fcfcfc;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #26A9E0; /* Primary color */
    box-shadow: 0 0 0 3px rgba(38, 169, 224, 0.2);
    outline: none;
}

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

.page-contact__btn--submit {
    background-color: #26A9E0; /* Primary color */
    color: #FFFFFF;
    border: none;
    width: 100%;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__btn--submit:hover {
    background-color: #1a8ccb; /* Darker primary */
    transform: translateY(-2px);
}

/* FAQ Section */
.page-contact__faq-section {
    padding: 50px 0;
    background-color: #f0f7fb; /* Lighter primary tint */
    margin-bottom: 40px;
}

.page-contact__faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-contact__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.page-contact__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #26A9E0; /* Primary color */
    margin-bottom: 10px;
}

.page-contact__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.page-contact__faq-answer a {
    color: #EA7C07; /* Login orange for links */
    text-decoration: none;
    font-weight: 500;
}

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

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-contact__form-grid {
        grid-template-columns: 1fr 1fr; /* Two columns on larger screens */
    }
    .page-contact__form-content {
        text-align: left;
    }
    .page-contact__form-content img {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-contact {
        padding: 10px 12px 30px; /* Adjust padding for smaller screens */
    }
    .page-contact__main-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem); /* Adjust H1 for mobile */
    }
    .page-contact__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    .page-contact__info-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    .page-contact__info-card {
        padding: 25px;
    }
    .page-contact__card-title {
        font-size: 1.2rem;
    }
    .page-contact__card-text {
        font-size: 0.95rem;
    }
    .page-contact__btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    .page-contact__contact-form {
        padding: 30px 20px;
    }
    .page-contact__form-input,
    .page-contact__form-textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    .page-contact__btn--submit {
        padding: 12px 20px;
        font-size: 1rem;
    }
    .page-contact__faq-question {
        font-size: 1.1rem;
    }
    .page-contact__faq-answer {
        font-size: 0.95rem;
    }
    /* Critical: Mobile image overflow prevention */
    .page-contact img {
        max-width: 100%;
        height: auto;
        display: block; /* Ensure block display for max-width to work */
    }
}