.page-contact {
    padding-top: 10px; /* Minimal padding-top for the first section */
    background-color: var(--background);
    color: var(--text-main);
    font-family: Arial, sans-serif;
}

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

.page-contact__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    background: linear-gradient(180deg, var(--deep-green) 0%, var(--background) 100%);
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-contact__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 20px; /* Space between image and text */
}

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

.page-contact__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-main);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-contact__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.page-contact__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--gold); /* Using gold for section titles */
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.page-contact__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--border);
    border-radius: 2px;
}

.page-contact__section-description {
    font-size: 1em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__methods-section {
    padding: 60px 0;
    background-color: var(--background);
}

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

.page-contact__method-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__method-icon {
    width: 250px; /* Minimum 200px, larger for visual impact */
    height: 187px; /* Maintain aspect ratio (4:3) */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-contact__method-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-contact__method-text {
    font-size: 0.95em;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.page-contact__method-link,
.page-contact__method-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__method-link {
    color: var(--glow);
    border: 1px solid var(--glow);
}

.page-contact__method-link:hover {
    background-color: rgba(87, 227, 141, 0.1);
    transform: translateY(-2px);
}

.page-contact__method-button {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main for button text */
    border: none;
}

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


.page-contact__form-section {
    padding: 60px 0;
    background-color: var(--deep-green); /* Use a slightly different background for contrast */
}

.page-contact__form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.page-contact__form-label {
    display: block;
    font-size: 1em;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 500;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 22px); /* Account for padding and border */
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background-color: #0A2217; /* Darker input background */
    color: var(--text-main);
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

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

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

.page-contact__submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main for button text */
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    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%);
    transform: translateY(-2px);
}

.page-contact__faq-section {
    padding: 60px 0 80px;
    background-color: var(--background);
}

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

.page-contact__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-contact__faq-question {
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    margin: 0;
}

.page-contact__faq-question:hover {
    background-color: rgba(17, 168, 78, 0.1); /* Slight hover effect */
}

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

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

.page-contact__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: var(--text-secondary);
}

.page-contact__faq-item.active .page-contact__faq-answer {
    max-height: 200px; /* Adjust based on expected content length */
    padding: 10px 25px 20px;
}

.page-contact__faq-answer p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-contact__hero-section {
        padding-bottom: 20px;
    }

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

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

    .page-contact__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
        margin-bottom: 15px;
    }

    .page-contact__section-description {
        font-size: 0.9em;
        margin-bottom: 30px;
    }

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

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

    .page-contact__method-icon {
        width: 200px; /* Ensure minimum size */
        height: 150px; /* Maintain aspect ratio */
    }

    .page-contact__form {
        padding: 25px;
    }

    .page-contact__form-input,
    .page-contact__form-textarea {
        width: calc(100% - 20px); /* Adjust for smaller padding */
        padding: 10px;
    }

    .page-contact__submit-button {
        padding: 12px;
        font-size: 1em;
    }

    .page-contact__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-contact__faq-question::after {
        right: 20px;
    }

    .page-contact__faq-answer {
        padding: 0 20px;
    }

    .page-contact__faq-item.active .page-contact__faq-answer {
        padding: 10px 20px 15px;
    }

    /* Mobile overflow prevention */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-contact__container {
        padding: 15px;
    }

    .page-contact__hero-section {
        padding-bottom: 15px;
    }

    .page-contact__hero-content {
        padding: 0 10px;
    }

    .page-contact__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }

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

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

    .page-contact__form {
        padding: 20px;
    }
}