/* style/support.css */
/* Base styles for .page-support - light text on dark body background */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Light text on dark background */
    background-color: #000000; /* Assuming body background is #000000 from shared.css */
    line-height: 1.6;
    font-size: 16px;
}

.page-support__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    box-sizing: border-box;
    overflow: hidden;
    background-color: #000000; /* Explicitly dark background for the section */
}

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

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1200px; /* Display width in page */
    border-radius: 8px;
    object-fit: cover;
}

.page-support__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    text-align: center;
}

.page-support__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-support__btn-primary:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

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

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

.page-support__section {
    padding: 60px 20px;
    background-color: #000000; /* Dark background for sections */
    box-sizing: border-box;
}

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

.page-support__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #26A9E0; /* Brand color for main titles */
    text-align: center;
    margin-bottom: 40px;
}

.page-support__sub-title {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 600;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-support__content-block p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-support__content-block a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-support__content-block a:hover {
    color: #1e87c0;
}

.page-support__image-text-block {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.page-support__image-wrapper {
    flex-shrink: 0;
    width: 40%; /* Example width for image on desktop */
    max-width: 600px;
}

.page-support__image-wrapper--left {
    margin-right: 30px; /* Space for text flowing around */
}

.page-support__text-content {
    flex-grow: 1;
    width: 100%; /* Default to full width for content */
}

.page-support__image {
    width: 100%;
    max-width: 600px; /* Adjust max-width as needed */
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-support__faq-section {
    padding: 60px 20px;
    background-color: #000000;
    box-sizing: border-box;
}

.page-support__faq-list {
    margin-top: 40px;
}

.page-support__faq-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for FAQ items */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1em;
    color: #ffffff;
    transition: background-color 0.3s ease;
    list-style: none; /* Remove default marker for details summary */
}

.page-support__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-support__faq-item[open] .page-support__faq-question {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-support__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #26A9E0; /* Brand color for toggle icon */
}

.page-support__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    line-height: 1.5;
    color: #f0f0f0;
}

.page-support__faq-answer p {
    margin: 0;
}

.page-support__text-center {
    text-align: center;
}

/* --- Mobile Responsive Styles --- */
@media (max-width: 768px) {
    .page-support {
        font-size: 15px;
        line-height: 1.5;
    }

    .page-support__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* Small top padding for mobile */
    }

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

    .page-support__description {
        font-size: 1em;
    }

    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important; /* Ensure container takes full width */
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-support__btn-primary,
    .page-support__btn-secondary,
    .page-support a[class*="button"],
    .page-support a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-support__section {
        padding: 40px 15px;
    }

    .page-support__container {
        padding-left: 0;
        padding-right: 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-support__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 30px;
    }

    .page-support__sub-title {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem);
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-support__image-text-block {
        flex-direction: column;
        gap: 20px;
    }

    .page-support__image-wrapper,
    .page-support__image-wrapper--left {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0;
    }

    .page-support__text-content {
        width: 100% !important;
    }

    .page-support__image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        float: none;
        margin-right: 0;
        margin-bottom: 20px;
        display: block !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Ensure all images inside page-support are responsive */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Video responsive styles (if any video is present) */
    .page-support video,
    .page-support__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-support__video-section,
    .page-support__video-container,
    .page-support__video-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}