.page-contact {
    color: #ffffff; /* Default text color for the page content, as body background is dark */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #0a0a0a; /* Ensure the main content area has a consistent dark background if needed, though body handles it */
}

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

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
    background-color: #0a0a0a; /* Dark background to match body */
    color: #ffffff;
}

.page-contact__hero-image {
    width: 100%;
    max-width: 1200px; /* Ensure image doesn't stretch too wide */
    height: auto;
    display: block;
    margin-bottom: 30px; /* Space between image and text */
    border-radius: 8px;
    object-fit: cover;
}

.page-contact__hero-content {
    max-width: 800px;
    z-index: 1;
}

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

.page-contact__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Section Titles & Descriptions */
.page-contact__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for titles */
}

.page-contact__section-title--white {
    color: #ffffff;
}

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

.page-contact__section-description--white {
    color: #ffffff;
}

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

.page-contact__btn-primary {
    background-color: #26A9E0; /* Brand primary color */
    color: #ffffff;
    border: 2px solid #26A9E0;
    margin-right: 15px;
}

.page-contact__btn-primary:hover {
    background-color: #1f8ecb;
    border-color: #1f8ecb;
}

.page-contact__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-contact__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-contact__btn-text-link {
    background: none;
    border: none;
    color: #26A9E0;
    padding: 0;
    text-decoration: underline;
    margin-top: 10px;
    display: block; /* Ensure it takes full width for clickability */
}

.page-contact__btn-text-link:hover {
    color: #1f8ecb;
}

/* Contact Methods Section */
.page-contact__methods-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
    color: #f0f0f0;
}

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

.page-contact__method-card {
    background-color: #2a2a2a; /* Card background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 450px; /* Ensure cards have similar height */
}

.page-contact__method-icon {
    width: 250px; /* Minimum 200px */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-contact__method-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-contact__method-text {
    font-size: 0.95em;
    color: #cccccc;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-contact__phone-link,
.page-contact__email-link {
    color: #26A9E0;
    text-decoration: none;
}

.page-contact__phone-link:hover,
.page-contact__email-link:hover {
    text-decoration: underline;
}

/* Social Section */
.page-contact__social-section {
    padding: 80px 0;
    background-color: #0a0a0a; /* Dark background */
    color: #ffffff;
}

.page-contact__social-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-contact__social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-contact__social-link:hover {
    color: #26A9E0;
}

.page-contact__social-icon {
    width: 200px; /* Must be >= 200px */
    height: 200px; /* Must be >= 200px */
    margin-bottom: 10px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(38, 169, 224, 0.4);
}

.page-contact__social-note {
    font-size: 0.9em;
    text-align: center;
    margin-top: 40px;
    color: #cccccc;
}

/* FAQ Section */
.page-contact__faq-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #f0f0f0;
}

.page-contact__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__faq-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    color: #f0f0f0;
}

.page-contact__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff;
    background-color: #3a3a3a;
    border-bottom: 1px solid #4a4a4a;
    list-style: none; /* For details/summary */
}

.page-contact__faq-question::-webkit-details-marker {
    display: none; /* For details/summary */
}

.page-contact__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #26A9E0;
    margin-left: 15px;
}

.page-contact__faq-answer {
    padding: 20px;
    font-size: 1em;
    color: #cccccc;
    /* No max-height here for details/summary, browser handles it */
}

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

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

.page-contact__faq-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Commitment Section */
.page-contact__commitment-section {
    padding: 80px 0;
    background-color: #0a0a0a;
    color: #ffffff;
}

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

.page-contact__commitment-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__commitment-heading {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-contact__commitment-text {
    font-size: 0.95em;
    color: #cccccc;
}

.page-contact__commitment-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 8px;
    object-fit: cover;
}

/* CTA Section */
.page-contact__cta-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #f0f0f0;
    text-align: center;
}

.page-contact__cta-content {
    max-width: 900px;
}

.page-contact__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on small screens */
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact__hero-image {
        max-width: 90%;
    }
    .page-contact__method-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-contact__commitment-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-contact__container,
    .page-contact__hero-section,
    .page-contact__methods-section,
    .page-contact__social-section,
    .page-contact__faq-section,
    .page-contact__commitment-section,
    .page-contact__cta-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .page-contact__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
    }

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

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

    .page-contact__hero-image,
    .page-contact__method-icon,
    .page-contact__social-icon,
    .page-contact__faq-image,
    .page-contact__commitment-image,
    .page-contact img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-contact__method-card {
        min-height: auto; /* Allow cards to adjust height */
    }

    .page-contact__social-grid {
        flex-direction: column; /* Stack social links vertically */
        align-items: center;
    }

    .page-contact__social-icon {
        width: 150px; /* Adjusting for mobile, still >= 200px source image, display can be smaller */
        height: 150px;
    }

    .page-contact__cta-buttons {
        flex-direction: column; /* Stack CTA buttons vertically */
        gap: 15px;
    }

    .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;
        margin-right: 0 !important; /* Remove margin for stacked buttons */
        margin-bottom: 10px; /* Add some space between stacked buttons */
    }

    .page-contact__faq-question {
        font-size: 1em;
    }
    .page-contact__faq-answer {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-contact__main-title {
        font-size: clamp(1.8em, 9vw, 2.2em);
    }
    .page-contact__section-title {
        font-size: clamp(1.4em, 8vw, 1.8em);
    }
    .page-contact__hero-section,
    .page-contact__methods-section,
    .page-contact__social-section,
    .page-contact__faq-section,
    .page-contact__commitment-section,
    .page-contact__cta-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}