.page-contact {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    margin-bottom: 40px;
    background-color: #F4F7FB; /* Match main background */
}

.page-contact__hero-image {
    display: block;
    width: 100%;
    height: auto; /* Ensure aspect ratio is maintained */
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and content */
    border-radius: 8px;
}

.page-contact__hero-content {
    text-align: center;
    padding: 0 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.page-contact__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive font size */
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.2;
}

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

.page-contact__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.page-contact__cta-button:hover {
    opacity: 0.9;
}

/* Section Titles */
.page-contact__section-title {
    font-size: 2.2rem;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Info Section */
.page-contact__info-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

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

.page-contact__info-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 */
}

.page-contact__card-title {
    font-size: 1.5rem;
    color: #2F6BFF; /* Main Color */
    margin-bottom: 10px;
}

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

.page-contact__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: normal;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.page-contact__card-button:hover {
    opacity: 0.9;
}

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

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px); /* Account for padding */
    padding: 12px 10px;
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 6px;
    font-size: 1rem;
    color: #000000; /* Custom Color_1776249996415 */
    background-color: #FFFFFF;
    transition: border-color 0.3s ease;
}

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

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

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

.page-contact__submit-button:hover {
    opacity: 0.9;
}

/* FAQ Section */
.page-contact__faq-section {
    padding: 40px 0 60px;
}

.page-contact__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-contact__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-contact__faq-question {
    font-size: 1.2rem;
    color: #2F6BFF; /* Main Color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-contact__faq-answer {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
}

.page-contact__faq-link {
    color: #2F6BFF; /* Main Color */
    text-decoration: none;
    font-weight: bold;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-contact__hero-content {
        padding: 0 15px 30px;
    }

    .page-contact__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-contact__description {
        font-size: 1rem;
    }

    .page-contact__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

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

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

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