.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Main text color for dark background */
    background-color: #08160F; /* Overall dark background */
}

/* Section padding and max-width for content */
.page-contact__hero-section,
.page-contact__info-section,
.page-contact__form-section,
.page-contact__faq-section,
.page-contact__location-section {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-contact__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-contact__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
    border-radius: 10px;
    object-fit: cover;
}

.page-contact__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-contact__hero-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-contact__hero-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Secondary text color */
    margin-bottom: 30px;
}

.page-contact__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    color: #F2C14E; /* Gold for section titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact__section-description {
    font-size: 1em;
    color: #A7D9B8;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* CTA Button styles */
.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-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

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

.page-contact__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Contact Methods Section */
.page-contact__info-container,
.page-contact__form-container,
.page-contact__faq-container,
.page-contact__location-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px; /* Adjust padding for inner containers */
    box-sizing: border-box;
}

.page-contact__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-contact__method-card {
    background-color: #11271B; /* Card Background */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #2E7A4E; /* Border color */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-contact__method-icon {
    width: 100px; /* Display size */
    height: 100px; /* Display size */
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px #57E38D); /* Glow effect */
}

.page-contact__method-title {
    font-size: 1.4em;
    color: #F2FFF6;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-contact__method-text {
    font-size: 0.95em;
    color: #A7D9B8;
    margin-bottom: 25px;
    flex-grow: 1; /* Allow text to take available space */
}

/* Contact Form Section */
.page-contact__contact-form {
    background-color: #11271B;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #2E7A4E;
    max-width: 700px;
    margin: 40px auto 0 auto;
    text-align: left;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    background-color: #0A4B2C; /* Deep Green for input fields */
    color: #F2FFF6;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #57E38D; /* Glow color on focus */
    outline: none;
}

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

/* FAQ Section */
.page-contact__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

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

.page-contact__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green for question background */
    transition: background-color 0.3s ease;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.page-contact__faq-item[open] > .page-contact__faq-question {
    background-color: #13994A; /* Slightly lighter green when open */
}

.page-contact__faq-qtext {
    color: #F2FFF6;
    flex-grow: 1;
    margin-right: 15px;
}

.page-contact__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #F2FFF6;
    transition: transform 0.3s ease;
}

.page-contact__faq-item[open] .page-contact__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to '-' */
}

/* Hide default details marker */
.page-contact__faq-item > summary {
    list-style: none;
}
.page-contact__faq-item > summary::-webkit-details-marker {
    display: none;
}


.page-contact__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 0.95em;
    color: #A7D9B8;
    line-height: 1.8;
}

.page-contact__faq-answer p {
    margin-bottom: 15px;
}

.page-contact__faq-link {
    display: inline-block;
    color: #57E38D; /* Glow color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__faq-link:hover {
    color: #F2C14E; /* Gold on hover */
    text-decoration: underline;
}

/* Location Section */
.page-contact__address-map {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    text-align: left;
    align-items: flex-start;
}

.page-contact__address-details {
    flex: 1;
    min-width: 300px;
    background-color: #11271B;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #2E7A4E;
}

.page-contact__address-text {
    font-size: 1em;
    color: #A7D9B8;
    margin-bottom: 15px;
}

.page-contact__address-text strong {
    color: #F2FFF6;
}

.page-contact__map-placeholder {
    flex: 2;
    min-width: 300px;
    background-color: #0A4B2C;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #2E7A4E;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-contact__hero-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-contact__section-title {
        font-size: clamp(1.6em, 4vw, 2.5em);
    }
    .page-contact__contact-methods {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .page-contact__address-map {
        flex-direction: column;
    }
    .page-contact__address-details,
    .page-contact__map-placeholder {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-section,
    .page-contact__info-section,
    .page-contact__form-section,
    .page-contact__faq-section,
    .page-contact__location-section {
        padding: 40px 15px;
    }

    .page-contact__hero-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-contact__hero-description {
        font-size: 1em;
    }

    .page-contact__section-title {
        font-size: clamp(1.5em, 5vw, 2em);
    }
    .page-contact__section-description {
        font-size: 0.9em;
        margin-bottom: 30px;
    }

    .page-contact__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-contact__cta-button--small {
        padding: 8px 15px;
        font-size: 0.85em;
    }

    .page-contact__contact-methods {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

    .page-contact__method-card {
        padding: 25px;
    }

    .page-contact__method-icon {
        width: 80px;
        height: 80px;
    }

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

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

    .page-contact__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-contact__faq-answer {
        padding: 10px 20px 15px 20px;
        font-size: 0.9em;
    }

    /* Enforce responsive image and container styles */
    .page-contact img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-contact__hero-section,
    .page-contact__info-container,
    .page-contact__form-container,
    .page-contact__faq-container,
    .page-contact__location-container,
    .page-contact__method-card,
    .page-contact__contact-form,
    .page-contact__faq-item,
    .page-contact__address-details,
    .page-contact__map-placeholder {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }
    /* Specific override for section padding to avoid double padding */
    .page-contact__hero-section,
    .page-contact__info-section,
    .page-contact__form-section,
    .page-contact__faq-section,
    .page-contact__location-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-contact__hero-section {
        padding-top: 10px !important;
    }
}