.page-contact {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--Text-Main, #F2FFF6); /* Default text color from custom palette */
    background-color: var(--Background, #08160F); /* Default background from custom palette */
}

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as per instruction */
    text-align: center;
    overflow: hidden; /* Ensure no overflow from images */
}

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

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

.page-contact__hero-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--Text-Main, #F2FFF6);
}

.page-contact__hero-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--Gold, #F2C14E); /* Using Gold for H1 for prominence */
}

.page-contact__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--Text-Secondary, #A7D9B8);
}

.page-contact__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.page-contact__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--Gold, #F2C14E);
}

.page-contact__text-block {
    font-size: 1em;
    margin-bottom: 20px;
    color: var(--Text-Main, #F2FFF6);
    text-align: justify;
}

/* Card Styling */
.page-contact__card {
    background: var(--Card-B-G, #11271B);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--Border, #2E7A4E);
    color: var(--Text-Main, #F2FFF6);
}

/* Button Styling */
.page-contact__btn-primary,
.page-contact__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box; /* For mobile responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-contact__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: var(--Text-Main, #F2FFF6);
    border: none;
}

.page-contact__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__btn-secondary {
    background: transparent;
    color: var(--Glow, #57E38D);
    border: 2px solid var(--Glow, #57E38D);
}

.page-contact__btn-secondary:hover {
    background: var(--Glow, #57E38D);
    color: var(--Background, #08160F);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__btn-small {
    padding: 8px 18px;
    font-size: 0.9em;
}

/* Intro Section */
.page-contact__intro-section {
    padding: 80px 0;
    background-color: var(--Background, #08160F);
}

.page-contact__dark-section {
    background-color: var(--Deep-Green, #0A4B2C); /* Deeper green for contrast */
    color: var(--Text-Main, #F2FFF6);
}

/* Contact Methods Section */
.page-contact__methods-section {
    padding: 80px 0;
}

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

.page-contact__method-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Push button to bottom */
}

.page-contact__method-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px; /* Ensure images are not tiny icons */
}

.page-contact__method-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--Gold, #F2C14E);
}

.page-contact__method-description {
    font-size: 0.95em;
    color: var(--Text-Secondary, #A7D9B8);
    margin-bottom: 25px; /* Space before button */
    flex-grow: 1; /* Allow description to take available space */
}

/* Contact Form Section */
.page-contact__form-section {
    padding: 80px 0;
}

.page-contact__form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 40px;
}

.page-contact__form-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-contact__contact-form {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

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

.page-contact__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--Text-Main, #F2FFF6);
}

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

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: var(--Text-Secondary, #A7D9B8);
    opacity: 0.7;
}

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

.page-contact__contact-form button[type="submit"] {
    width: auto;
    min-width: 180px;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 1.1em;
}

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

.page-contact__faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-contact__faq-item {
    cursor: pointer;
    overflow: hidden;
}

.page-contact__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1.1em;
    color: var(--Gold, #F2C14E);
    list-style: none; /* Remove default marker */
    -webkit-touch-callout: none; /* Disable text selection on iOS */
    -webkit-user-select: none; /* Disable text selection on iOS */
    user-select: none; /* Disable text selection */
}

.page-contact__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for Webkit browsers */
}

.page-contact__faq-qtext {
    flex-grow: 1;
}

.page-contact__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--Glow, #57E38D);
    transition: transform 0.3s ease;
}

.page-contact__faq-item[open] .page-contact__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' or '−' effect */
}