.page-support {
    font-family: Arial, sans-serif;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #FFFFFF; /* Default background */
    line-height: 1.6;
}

.page-support__hero-section {
    position: relative;
    background-color: #100224; /* Dark background for hero */
    padding-bottom: 40px; /* Space below content */
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/5; /* Recommended aspect ratio for hero */
    filter: brightness(0.7); /* Slightly darken image for text readability */\    /* min-height is for image content, not for layout, so it's fine for all images */
    min-height: 200px;
}

.page-support__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    max-width: 900px;
    width: 90%;
    padding: 20px;
    box-sizing: border-box;
}

.page-support__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-support__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__cta-button {
    display: inline-block;
    background-color: #EA7C07; /* Login color for CTA */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-support__cta-button:hover {
    background-color: #d46c00;
}

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

.page-support__section-title {
    font-size: 2.5rem;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.3;
}

/* FAQ Section */
.page-support__faq-section {
    background-color: #f8f8f8;
    color: #333333;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-support__faq-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px auto; /* Center image */
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-support__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.page-support__accordion-header {
    width: 100%;
    background-color: #FFFFFF;
    color: #26A9E0;
    padding: 18px 25px;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-support__accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-support__accordion-header[aria-expanded="true"]::after {
    content: '-';
    transform: rotate(0deg); /* No rotation needed for - */
}

.page-support__accordion-header:hover {
    background-color: #eaf7fc;
}

.page-support__accordion-content {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-support__accordion-content p {
    padding-bottom: 15px;
    margin-top: 0;
}

.page-support__accordion-content a {
    color: #26A9E0;
    text-decoration: none;
}

.page-support__accordion-content a:hover {
    text-decoration: underline;
}

/* Guides Section */
.page-support__guides-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #FFFFFF;
    color: #333333;
}

.page-support__guides-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px auto; /* Center image */
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

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

.page-support__guide-item {
    background-color: #f0f8ff;
    border: 1px solid #e0f0ff;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-support__guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-support__guide-item a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
}

.page-support__guide-item a:hover {
    text-decoration: underline;
}

/* Contact Section */
.page-support__contact-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #f8f8f8;
    color: #333333;
}

.page-support__contact-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__contact-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px auto; /* Center image */
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-support__contact-methods {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.page-support__contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333333;
    padding: 20px;
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    min-width: 180px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.page-support__contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-support__contact-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-support__contact-text {
    font-weight: bold;
    font-size: 1.1rem;
}

.page-support__contact-method--chat .page-support__contact-icon { color: #EA7C07; } /* Use login color for chat */

.page-support__contact-note {
    text-align: center;
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 20px;
    color: #555555;
}

/* Security Section */
.page-support__security-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #FFFFFF;
    color: #333333;
}

.page-support__security-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px auto; /* Center image */
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-support__security-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__security-description a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-support__security-description a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-support__hero-section {
        padding-top: 0; /* Hero content is below image now */
        padding-bottom: 30px;
    }

    .page-support__hero-content {
        position: static; /* Remove absolute positioning */
        transform: none;
        padding: 20px;
        text-align: left;
    }

    .page-support__main-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        text-align: left;
    }

    .page-support__hero-description {
        text-align: left;
    }

    .page-support__cta-button {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

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

    .page-support__contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .page-support__contact-method {
        width: 100%;
        max-width: 300px;
    }
}

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

    /* CRITICAL: Mobile overflow prevention */
    .page-support__hero-image,
    .page-support__faq-image,
    .page-support__guides-image,
    .page-support__contact-image,
    .page-support__security-image {
        max-width: 100%;
        height: auto;
    }

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

@media (max-width: 549px) {
    .page-support__main-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }

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