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

.page-contact__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    box-sizing: border-box;
    overflow: hidden;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3; /* Slightly dim the background image for text readability */
}

.page-contact__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(17, 168, 78, 0.4); /* Main color with transparency */
    border-radius: 10px;
}

.page-contact__hero-content h1 {
    font-size: clamp(2em, 4vw, 3.5em);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

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

.page-contact__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    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%);
}

.page-contact__contact-methods,
.page-contact__contact-form-section,
.page-contact__why-choose-us,
.page-contact__faq-section,
.page-contact__feedback-section,
.page-contact__cta-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-contact h2 {
    font-size: 2.5em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-contact h3 {
    font-size: 1.8em;
    color: #57E38D; /* Glow */
    margin-bottom: 15px;
}

.page-contact p {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
}

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

.page-contact__method-cards .page-contact__card {
    background-color: #11271B; /* Card BG */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.page-contact__method-cards .page-contact__card p {
    color: #A7D9B8; /* Text Secondary */
}

.page-contact__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #57E38D; /* Glow */
    border: 2px solid #57E38D; /* Glow */
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-contact__btn-secondary:hover {
    background-color: #57E38D; /* Glow */
    color: #11271B; /* Card BG */
}

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

.page-contact__link-text:hover {
    color: #2AD16F; /* Lighter green from button gradient */
    text-decoration: underline;
}

.page-contact__social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

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

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

.page-contact__contact-form input[type="text"],
.page-contact__contact-form input[type="email"],
.page-contact__contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 5px;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
    box-sizing: border-box;
}

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

.page-contact__contact-form input:focus,
.page-contact__contact-form textarea:focus {
    outline: none;
    border-color: #57E38D; /* Glow */
    box-shadow: 0 0 5px rgba(87, 227, 141, 0.5);
}

.page-contact__contact-form .page-contact__cta-button {
    width: auto;
    padding: 12px 25px;
    font-size: 1.1em;
    cursor: pointer;
}

.page-contact__feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.page-contact__feature-list li {
    background-color: #11271B; /* Card BG */
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #2E7A4E; /* Border */
    color: #A7D9B8; /* Text Secondary */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__feature-list li strong {
    color: #F2FFF6; /* Text Main */
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.page-contact__faq-list {
    margin-top: 30px;
    position: relative;
}

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

.page-contact__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-contact__faq-question::-webkit-details-marker {
    display: none;
}

.page-contact__faq-question:hover {
    background-color: #11A84E; /* Main color */
}

.page-contact__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #57E38D; /* Glow */
}

.page-contact__faq-answer {
    padding: 15px 20px;
    background-color: #11271B; /* Card BG */
    color: #A7D9B8; /* Text Secondary */
    border-top: 1px solid #1E3A2A; /* Divider */
}

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

.page-contact__image {
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__cta-section {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 60px;
}

.page-contact__cta-section h2 {
    color: #F2FFF6; /* Text Main */
}

.page-contact__cta-section p {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

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

/* Divider */
.page-contact__contact-methods::after,
.page-contact__why-choose-us::after,
.page-contact__faq-section::after {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background-color: #1E3A2A; /* Divider */
    margin: 60px auto 0 auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-contact__hero-content h1 {
        font-size: clamp(2em, 5vw, 3em);
    }

    .page-contact__hero-content p {
        font-size: 1em;
    }

    .page-contact h2 {
        font-size: 2em;
    }

    .page-contact h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-contact {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-contact__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    .page-contact__hero-content h1 {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

    .page-contact__hero-content p {
        font-size: 0.95em;
    }

    .page-contact__contact-methods,
    .page-contact__contact-form-section,
    .page-contact__why-choose-us,
    .page-contact__faq-section,
    .page-contact__feedback-section,
    .page-contact__cta-section {
        margin: 30px auto;
        padding: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-contact h2 {
        font-size: 1.8em;
    }

    .page-contact h3 {
        font-size: 1.3em;
    }

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

    .page-contact__cta-button,
    .page-contact__btn-primary,
    .page-contact__btn-secondary,
    .page-contact a[class*="button"],
    .page-contact a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-contact__social-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-contact__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-contact img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-contact__method-cards .page-contact__card,
    .page-contact__contact-form,
    .page-contact__feature-list li,
    .page-contact__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px;
    }

    .page-contact__image {
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-content h1 {
        font-size: clamp(1.5em, 8vw, 2em);
    }

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

    .page-contact h2 {
        font-size: 1.5em;
    }

    .page-contact h3 {
        font-size: 1.2em;
    }
}