/* General styles for page-support */
.page-support {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding as per rules */
}

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

.page-support__section-title {
    font-size: 2.5rem;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-support__section-description {
    font-size: 1.1rem;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    margin-bottom: 60px;
    display: flex; /* For mobile "image-then-text" */
    flex-direction: column; /* For mobile "image-then-text" */
    align-items: center;
    background-color: #2F6BFF; /* Main Color for hero background */
    padding-bottom: 40px;
    overflow: hidden; /* Prevent image overflow */
}

.page-support__hero-visual {
    width: 100%;
    order: 1; /* Image first on mobile */
}

.page-support__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/5; /* Recommended aspect ratio */
    filter: brightness(0.7); /* Slightly darken image for text contrast, but not changing color */
}

.page-support__hero-content {
    order: 2; /* Content second on mobile */
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin-top: -80px; /* Pull content up slightly over image for visual overlap */
    position: relative; /* Ensure content is above image */
    z-index: 1; /* Ensure content is above image */
    color: #FFFFFF; /* White text for contrast */
    background: rgba(0,0,0,0.3); /* Slight overlay for readability on desktop */
    border-radius: 12px;
}

.page-support__main-title {
    font-size: clamp(2rem, 5vw, 3rem); /* H1 font-size clamp */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF; /* White text */
}

.page-support__hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #D6E2FF; /* Lighter blue for description */
}

.page-support__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-card,
.page-support__btn-inline {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.page-support__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    border: none;
}

.page-support__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #D6E2FF; /* Border color */
}

.page-support__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Contact Methods Section */
.page-support__contact-methods {
    padding: 60px 0;
}

.page-support__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted minmax for better mobile flow */
    gap: 30px;
    margin-top: 40px;
}

.page-support__method-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-support__method-card:hover {
    transform: translateY(-5px);
}

.page-support__method-icon {
    width: 100%; /* Ensure image fills card width */
    height: auto;
    max-width: 400px; /* Max width to ensure it's not too large */
    min-width: 200px; /* Min width for images */
    min-height: 200px; /* Min height for images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-support__card-title {
    font-size: 1.5rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
}

.page-support__card-text {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 25px;
}

.page-support__btn-card {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    border: none;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.page-support__btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background */
}

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

.page-support__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.page-support__faq-question {
    font-size: 1.3rem;
    color: #1F2D3D; /* Text Main */
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: #2F6BFF; /* Main color */
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::after {
    transform: rotate(45deg);
}

.page-support__faq-answer {
    padding: 0 30px 20px;
    color: #1F2D3D; /* Text Main */
    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 500px; /* Arbitrary large value to allow expansion */
    padding-top: 10px;
}

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

.page-support__faq-answer a {
    color: #2F6BFF; /* Main Color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-support__faq-answer a:hover {
    text-decoration: underline;
}

.page-support__btn-inline {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.95rem;
    margin-top: 10px;
}

.page-support__btn-inline:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.page-support__cta-section {
    padding: 80px 0;
    background-color: #2F6BFF; /* Main Color */
    color: #FFFFFF;
    text-align: center;
}

.page-support__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-support__cta-content .page-support__section-title {
    color: #FFFFFF;
    font-size: 2.8rem;
}

.page-support__cta-content .page-support__section-description {
    color: #D6E2FF; /* Lighter blue */
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (min-width: 850px) {
    .page-support__hero-section {
        flex-direction: row; /* Desktop: image and text side-by-side or overlay */
        justify-content: center;
        align-items: center;
        padding: 0;
        min-height: 500px; /* Ensure hero section has some height */
    }

    .page-support__hero-visual {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        order: unset; /* Reset order */
    }

    .page-support__hero-content {
        position: relative;
        z-index: 2; /* Ensure content is above image */
        padding: 80px 20px;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .page-support__container {
        padding: 0 15px;
    }

    .page-support__section-title {
        font-size: 2rem;
    }

    .page-support__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem); /* Adjust H1 for smaller screens */
    }

    .page-support__hero-description {
        font-size: 1rem;
    }

    .page-support__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-support__btn-primary,
    .page-support__btn-secondary {
        width: 80%;
        max-width: 300px;
    }

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

    .page-support__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .page-support__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }

    /* Important: Mobile responsiveness for images */
    .page-support img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

/* Ensure content area images are at least 200px wide/high */
.page-support__method-card img {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Ensure it takes available width in card */
    height: auto;
}