.page-contact {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for first section */
}

.page-contact__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

.page-contact__hero-image {
    width: 100%;
    max-width: 1200px; /* Adjust based on typical container width */
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 20px;
}

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

.page-contact__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2C14E; /* Gold color for main title */
}

.page-contact__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #A7D9B8;
}

.page-contact__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    min-width: 200px; /* Ensure button is not too small */
    text-align: center;
}

.page-contact__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-contact__info-section,
.page-contact__form-section,
.page-contact__social-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    border: 1px solid #2E7A4E; /* Border color */
}

.page-contact__section-title {
    font-size: 2.2em;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    text-align: center;
}

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

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

.page-contact__info-card {
    background-color: #0A4B2C; /* Deep Green for cards */
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E;
}

.page-contact__card-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-contact__card-text,
.page-contact__card-address {
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95em;
    margin-bottom: 15px;
}

.page-contact__card-link {
    color: #57E38D; /* Glow */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__card-link:hover {
    text-decoration: underline;
    color: #2AD16F;
}

.page-contact__contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-contact__form-group {
    display: flex;
    flex-direction: column;
}

.page-contact__form-label {
    font-size: 1em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 8px;
}

.page-contact__form-input,
.page-contact__form-textarea {
    padding: 12px;
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 5px;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
    font-size: 1em;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #A7D9B8; /* Text Secondary */
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    outline: none;
    border-color: #57E38D; /* Glow */
    box-shadow: 0 0 0 3px rgba(87, 227, 141, 0.3);
}

.page-contact__form-submit-button {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-end; /* Align button to the right */
    min-width: 150px; /* Ensure button is not too small */
}

.page-contact__form-submit-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-contact__social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.page-contact__social-icon-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.page-contact__social-icon-link:hover {
    transform: translateY(-5px);
}

.page-contact__social-icon {
    width: 64px; /* Minimum 200x200px for content images, but social icons are usually smaller. Given the strict rule, I'll use 64x64 as a placeholder, but in a real scenario, these might need to be SVGs or larger if they are *content* images. For now, I'll keep the placeholder size as requested for social_media type, acknowledging the conflict with general image size rule. If these are considered 'decorative small icons' they would be forbidden. I'll make sure the `imageRequirements` for these are explicitly small to flag. Re-reading: '禁止所有小图标...任何宽度或高度小于200像素的图片'. This means even social icons must be >= 200px. This is highly unusual for social icons. I will set the width/height to 200px for the `<img>` tags to comply, and also update the `imageRequirements` accordingly. This will make social icons very large, but it's a strict rule. */
    height: 64px; /* Updated to 200x200 in HTML img attributes to comply with strict rule */
    width: 200px;
    height: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .page-contact__hero-section {
        padding: 15px 0;
        margin-bottom: 30px;
    }

    .page-contact__hero-image {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

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

    .page-contact__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-contact__cta-button {
        padding: 12px 25px;
        min-width: unset;
        width: 100%;
    }

    .page-contact__info-section,
    .page-contact__form-section,
    .page-contact__social-section {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .page-contact__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .page-contact__section-description {
        font-size: 0.95em;
        margin-bottom: 25px;
    }

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

    .page-contact__info-card {
        padding: 20px;
    }

    .page-contact__card-title {
        font-size: 1.3em;
    }

    .page-contact__card-text,
    .page-contact__card-address {
        font-size: 0.9em;
    }

    .page-contact__form-input,
    .page-contact__form-textarea {
        padding: 10px;
        font-size: 0.95em;
    }

    .page-contact__form-submit-button {
        padding: 12px 20px;
        font-size: 1em;
        width: 100%;
        align-self: center;
    }

    .page-contact__social-links {
        gap: 15px;
        margin-top: 20px;
    }

    .page-contact__social-icon {
        width: 200px; /* Enforced minimum size */
        height: 200px; /* Enforced minimum size */
    }

    /* Ensure all content area images are responsive and don't overflow */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
}