.page-contact {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    padding-top: 10px; /* Small top padding, per rule */
}

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

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-contact__hero-image-wrapper {
    width: 100%;
    height: 600px; /* Example height for hero image */
    overflow: hidden;
    position: relative;
    margin-bottom: 20px; /* Space between image and content */
}

.page-contact__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.page-contact__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    /* No fixed font-size, rely on clamp if needed, otherwise browser default for h1 + font-weight */
}

.page-contact__description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.page-contact__cta-button:hover {
    transform: translateY(-3px);
}

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

.page-contact__info-section .page-contact__container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-contact__info-card,
.page-contact__form-card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-contact__info-title,
.page-contact__form-title,
.page-contact__faq-title,
.page-contact__map-title {
    color: #F2FFF6; /* Text Main */
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
}

.page-contact__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-contact__contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
}

.page-contact__icon {
    font-size: 1.5em;
    margin-right: 15px;
    color: #2AD16F; /* A vibrant green for icons */
}

.page-contact__contact-link,
.page-contact__faq-link {
    color: #22C768; /* Auxiliary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-contact__contact-link:hover,
.page-contact__faq-link:hover {
    color: #57E38D; /* Glow color on hover */
    text-decoration: underline;
}

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

.page-contact__social-link {
    display: block;
    width: 200px; /* Display size for social icons, min 200px */
    height: 200px; /* Display size for social icons, min 200px */
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #2E7A4E;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-contact__social-link:hover {
    transform: translateY(-5px);
    border-color: #57E38D;
}

/* Ensure social icons are properly displayed and resized */
.page-contact__social-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* No filter allowed */
}

.page-contact__contact-form {
    display: flex;
    flex-direction: column;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 12px 10px;
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    background-color: #0A4B2C; /* Deep Green, slightly darker than card BG for input */
    color: #F2FFF6; /* Text Main */
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
}

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

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

.page-contact__submit-button {
    padding: 15px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    align-self: flex-start; /* Align button to the left */
    min-width: 180px; /* Ensure larger size */
}

.page-contact__submit-button:hover {
    transform: translateY(-3px);
}

/* FAQ Section */
.page-contact__faq-section {
    padding: 60px 0;
    margin-bottom: 40px;
    text-align: center;
}

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

.page-contact__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-contact__faq-question {
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    font-size: 1.2em;
    color: #F2FFF6; /* Text Main */
    position: relative;
    transition: background-color 0.3s ease;
}

.page-contact__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #2AD16F;
    transition: transform 0.3s ease;
}

.page-contact__faq-item.active .page-contact__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg); /* No rotation needed for minus */
}

.page-contact__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-contact__faq-item.active .page-contact__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding: 0 25px 20px;
}

/* Map Section */
.page-contact__map-section {
    padding: 60px 0;
    text-align: center;
}

.page-contact__map-wrapper {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1000px;
}

.page-contact__map-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Minimum size for content images */
    /* No filter allowed */
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .page-contact__hero-section {
        margin-bottom: 20px;
    }

    .page-contact__hero-image-wrapper {
        height: 300px; /* Adjust height for smaller screens */
    }

    .page-contact__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em); /* Responsive font size for h1 */
    }

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

    .page-contact__info-section .page-contact__container {
        flex-direction: column;
        gap: 20px;
    }

    .page-contact__info-card,
    .page-contact__form-card {
        min-width: unset;
        width: 100%;
        padding: 20px;
    }

    .page-contact__info-title,
    .page-contact__form-title,
    .page-contact__faq-title,
    .page-contact__map-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .page-contact__contact-item,
    .page-contact__form-label,
    .page-contact__faq-question {
        font-size: 1em;
    }

    .page-contact__cta-button,
    .page-contact__submit-button {
        padding: 12px 20px;
        font-size: 1em;
        min-width: 150px;
    }

    /* Enforce minimum display size for all images within the page-contact content area */
    .page-contact img {
        min-width: 200px; /* All images must display at least 200px wide */
        min-height: 200px; /* All images must display at least 200px high */
        max-width: 100%;
        height: auto;
    }

    /* Social media links specifically */
    .page-contact__social-link {
        width: 200px; /* Override to ensure min-size for display */
        height: 200px;
        margin: 0 auto; /* Center individual items if they wrap */
    }
    .page-contact__social-media {
        flex-wrap: wrap; /* Allow items to wrap to a new line */
    }
}