.page-support {
    color: #ffffff; /* Dark body background #0a0a0a, so light text */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0 60px; /* Small top padding, body handles header offset */
    overflow: hidden;
    background-color: #0a0a0a; /* Match body for seamless hero background */
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and content */
}

.page-support__hero-content {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1; /* Ensure content is above any potential background layers */
}

.page-support__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    color: #26A9E0; /* Primary brand color */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-support__description {
    font-size: 1.1rem;
    color: #f0f0f0; /* Slightly off-white for body text */
    margin-bottom: 30px;
}

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

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    text-align: center;
    white-space: normal; /* Allow text wrap for buttons */
    word-wrap: break-word; /* Allow text wrap for buttons */
    max-width: 100%; /* Ensure buttons don't overflow */
}

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

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

.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__btn-link {
    background-color: #EA7C07; /* Login color for general action buttons */
    color: #ffffff;
    border: 2px solid #EA7C07;
    padding: 10px 20px;
    font-size: 0.95rem;
}

.page-support__btn-link:hover {
    background-color: #c46406;
    border-color: #c46406;
}

.page-support__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__section-description {
    font-size: 1.05rem;
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

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

.page-support__method-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}

.page-support__method-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px; /* Min image size */
}

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

.page-support__method-text {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

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

.page-support__faq-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
    border: 1px solid #3a3a3a;
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #2a2a2a;
    border-bottom: 1px solid #3a3a3a; /* For collapsed state */
    list-style: none; /* For details/summary */
}
.page-support__faq-question::-webkit-details-marker {
    display: none;
}
.page-support__faq-question::marker {
    display: none;
}

.page-support__faq-item[open] .page-support__faq-question {
    border-bottom: 1px solid #3a3a3a; /* Ensure border is visible when open */
}

.page-support__faq-qtext {
    flex-grow: 1;
    color: #ffffff; /* Ensure text is white */
}

.page-support__faq-toggle {
    font-size: 1.5rem;
    margin-left: 20px;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: #e0e0e0;
    background-color: #1a1a1a;
}

.page-support__faq-answer p {
    margin-bottom: 10px;
    color: #e0e0e0; /* Ensure paragraph text is light */
}

.page-support__faq-answer a {
    color: #26A9E0; /* Link color */
    text-decoration: underline;
}

.page-support__cta-more-faq {
    text-align: center;
    margin-top: 40px;
}

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

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

.page-support__guide-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.page-support__guide-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-height: 200px; /* Min image size */
}

.page-support__guide-title {
    font-size: 1.4rem;
    color: #26A9E0;
    padding: 20px 20px 10px;
    font-weight: bold;
}

.page-support__guide-text {
    font-size: 0.95rem;
    color: #e0e0e0;
    padding: 0 20px 20px;
    flex-grow: 1;
}

/* Policy Section */
.page-support__policy-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

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

.page-support__policy-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-support__policy-title {
    font-size: 1.3rem;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__policy-text {
    font-size: 1rem;
    color: #e0e0e0;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-support__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-support__hero-section {
        padding: 10px 0 40px;
    }

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

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

    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-support__btn-primary,
    .page-support__btn-secondary,
    .page-support__btn-link {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-support__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-support__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .page-support__contact-methods,
    .page-support__faq-section,
    .page-support__guide-section,
    .page-support__policy-section,
    .page-support__cta-section {
        padding: 50px 0;
    }

    .page-support__method-grid,
    .page-support__guide-grid,
    .page-support__policy-points {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-support__method-card,
    .page-support__guide-card,
    .page-support__policy-item {
        padding: 25px;
    }

    .page-support__method-card img,
    .page-support__guide-image,
    .page-support__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-height: 200px !important; /* Enforce min size even on mobile */
    }

    /* Video section (if present, apply similar rules) */
    .page-support__video-section {
        padding-top: 10px !important; /* body handles --header-offset */
    }
    .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 {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-support__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}