.page-support {
    font-family: Arial, sans-serif;
    color: var(--text-main, #1F2D3D);
    background-color: var(--bg-color, #F4F7FB);
    line-height: 1.6;
}

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

.page-support__hero-section {
    background-color: #2F6BFF; /* Using primary color for consistency */
    padding-bottom: 20px; /* Small padding at bottom */
    text-align: center;
    color: #FFFFFF;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    max-height: 675px; /* Adjust based on recommended sizes, 1200x675 is 16:9 */
    object-fit: cover;
    display: block;
    margin-bottom: 20px; /* Space between image and content */
}

.page-support__hero-content {
    padding: 0 20px;
}

.page-support__main-title {
    font-size: clamp(2em, 4vw, 2.8em); /* Using clamp for responsive H1 */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #E0EFFF; /* Lighter text for contrast on dark background */
}

.page-support__cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-support__cta-button:hover {
    opacity: 0.9;
}

.page-support__cta-button--secondary {
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Using auxiliary color for secondary CTA */
}

.page-support__info-section,
.page-support__faq-section,
.page-support__contact-cta-section {
    padding: 60px 0;
    text-align: center;
}

.page-support__section-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-main, #1F2D3D);
}

.page-support__text {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-main, #1F2D3D);
}

.page-support__channel-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-support__channel-item {
    background-color: var(--card-bg, #FFFFFF);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    text-align: left;
    border: 1px solid var(--border-color, #D6E2FF);
}

.page-support__channel-heading {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--custom-color_1776249996415, #000000);
}

.page-support__channel-text {
    font-size: 1em;
    margin-bottom: 20px;
    color: var(--text-main, #1F2D3D);
}

.page-support__channel-link {
    display: inline-block;
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #2F6BFF;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-support__channel-link:hover {
    color: #6FA3FF;
    border-color: #6FA3FF;
}

.page-support__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-support__faq-item {
    background-color: var(--card-bg, #FFFFFF);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color, #D6E2FF);
}

.page-support__faq-question {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--custom-color_1776249996415, #000000);
    cursor: pointer; /* Indicate it's clickable */
}

.page-support__faq-answer {
    font-size: 1em;
    color: var(--text-main, #1F2D3D);
    margin-bottom: 15px;
}

.page-support__faq-link {
    display: inline-block;
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #2F6BFF;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-support__faq-link:hover {
    color: #6FA3FF;
    border-color: #6FA3FF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__container {
        padding: 15px;
    }

    .page-support__hero-section {
        padding-top: 10px; /* Small padding at top, body handles header offset */
    }

    .page-support__hero-image {
        max-height: 400px; /* Adjust for mobile */
    }

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

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

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

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

    .page-support__channel-list {
        flex-direction: column;
        align-items: center;
    }

    .page-support__channel-item {
        min-width: unset;
        width: 100%;
        max-width: 400px; /* Constrain width on smaller screens */
    }

    /* Important: Ensure images don't overflow on mobile */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure no content area images are smaller than 200px */
.page-support img:not(.page-support__hero-image) { /* Exclude hero image for this specific rule if it's already handled by object-fit/max-height */
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* To maintain aspect ratio without distortion */
}