.page-contact {
    background-color: #08160F;
    color: #F2FFF6;
    padding-bottom: 40px; /* General padding for the bottom */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

.page-contact__hero-section {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #0A4B2C; /* Deep Green */
    overflow: hidden; /* Ensure no overflow from image */
}

.page-contact__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image container */
    margin-bottom: 20px; /* Space between image and text */
}

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

.page-contact__hero-content {
    max-width: 800px;
    padding: 0 20px 40px;
}

.page-contact__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
}

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

.page-contact__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
    color: #F2FFF6; /* Text Main */
    padding-top: 40px;
}

.page-contact__section-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
}

.page-contact__form-section {
    padding: 60px 0;
}

.page-contact__form {
    background-color: #11271B; /* Card BG */
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #08160F; /* Background */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 5px;
    color: #F2FFF6; /* Text Main */
    font-size: 1rem;
    box-sizing: border-box;
}

.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 */
    box-shadow: 0 0 0 3px rgba(87, 227, 141, 0.3);
}

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

.page-contact__submit-button {
    display: block;
    width: 100%;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__submit-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Invert gradient on hover */
    transform: translateY(-2px);
}

.page-contact__info-section {
    padding: 60px 0;
    text-align: center;
}

.page-contact__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__info-card {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-contact__info-card:hover {
    transform: translateY(-5px);
}

.page-contact__info-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #F2C14E; /* Gold */
}

.page-contact__info-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
}

.page-contact__map-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-contact__faq-section {
    padding: 60px 0;
}

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

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

.page-contact__faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-contact__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-contact__faq-question.is-active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-contact__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.page-contact__faq-answer.is-open {
    max-height: 200px; /* Adjust as needed for content */
    opacity: 1;
    margin-top: 15px;
}

.page-contact__link {
    color: #57E38D; /* Glow */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-contact__link:hover {
    text-decoration: underline;
    color: #2AD16F; /* Button top color */
}

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

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

    .page-contact__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .page-contact__info-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .page-contact__form {
        padding: 30px;
        margin: 0 15px;
    }

    .page-contact__faq-list {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
    /* Specifically for content images to ensure they are not shrunk below 200px by accident */
    .page-contact__form-section img,
    .page-contact__info-section img,
    .page-contact__faq-section img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Explicitly set min-width to 200px */
        min-height: 200px; /* Explicitly set min-height to 200px */
    }
}

@media (max-width: 549px) {
    .page-contact__container {
        padding: 0 15px;
    }
    .page-contact__hero-content {
        padding: 0 10px 25px;
    }
    .page-contact__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-contact__hero-description {
        font-size: 0.95rem;
    }
    .page-contact__section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        padding-top: 30px;
    }
    .page-contact__section-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    .page-contact__form {
        padding: 20px;
    }
    .page-contact__form-label {
        font-size: 0.95rem;
    }
    .page-contact__form-input,
    .page-contact__form-textarea,
    .page-contact__submit-button {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    .page-contact__info-card-title {
        font-size: 1.2rem;
    }
    .page-contact__info-card-text {
        font-size: 0.9rem;
    }
    .page-contact__faq-question {
        font-size: 1.1rem;
    }
    .page-contact__faq-answer {
        font-size: 0.9rem;
    }
}