:root {
    --main-color: #2F6BFF;
    --accent-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --bg-color: #F4F7FB;
    --text-main: #1F2D3D;
    --custom-color-1776249996415: #000000;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}

.page-support {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* #1F2D3D */
    background-color: var(--bg-color); /* #F4F7FB */
    padding-bottom: 40px;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

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

.page-support__hero-section {
    position: relative;
    overflow: hidden;
    background-color: var(--main-color); /* #2F6BFF */
    padding-bottom: 40px; /* Space between image and content below it */
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-height: 450px; /* Adjust as needed */
    overflow: hidden;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* width and height attributes in HTML are for layout, CSS for responsive */
}

.page-support__hero-content {
    text-align: center;
    padding: 20px;
    color: #FFFFFF; /* White text on blue background */
    max-width: 900px;
    margin: 0 auto;
}

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

.page-support__description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-support__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--custom-color-1776249996415); /* #000000 */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
}

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

.page-support__faq-item {
    background-color: var(--card-bg); /* #FFFFFF */
    border: 1px solid var(--border-color); /* #D6E2FF */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--custom-color-1776249996415); /* #000000 */
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-support__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-main); /* #1F2D3D */
}

.page-support__faq-answer a {
    color: var(--main-color); /* #2F6BFF */
    text-decoration: none;
    font-weight: 600;
}

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

.page-support__contact-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 0;
    background-color: var(--bg-color); /* #F4F7FB */
}

.page-support__contact-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-main); /* #1F2D3D */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-support__contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--button-gradient); /* Button gradient */
    color: #FFFFFF;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-support__contact-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-support__button-icon {
    margin-right: 10px;
    font-size: 1.3em;
}

.page-support__cta-text {
    font-size: 1.2em;
    color: var(--text-main); /* #1F2D3D */
    margin-top: 30px;
    font-weight: 500;
}

.page-support__cta-link {
    color: var(--main-color); /* #2F6BFF */
    text-decoration: none;
    font-weight: 700;
}

.page-support__cta-link:hover {
    text-decoration: underline;
}

.page-support__info-section {
    margin-top: 60px;
    padding-bottom: 40px;
}

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

.page-support__info-item {
    background-color: var(--card-bg); /* #FFFFFF */
    border: 1px solid var(--border-color); /* #D6E2FF */
    border-radius: 8px;
    padding: 15px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-support__info-item a {
    color: var(--text-main); /* #1F2D3D */
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05em;
}

.page-support__info-item a:hover {
    color: var(--main-color); /* #2F6BFF */
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__hero-image-wrapper {
        max-height: 300px;
    }

    .page-support__main-title {
        font-size: 2em;
    }

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

    .page-support__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
    }

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

    .page-support__faq-question {
        font-size: 1.15em;
    }

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

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

    /* Mobile image overflow prevention */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}

/* Global minimum size for content images (excluding hero image which has specific styling) */
.page-support__faq-item img,
.page-support__contact-section img,
.page-support__info-section img {
    min-width: 200px;
    min-height: 200px;
}

/* Hero image specific sizing, allows it to be responsive while its wrapper controls max height */
.page-support__hero-image {
    min-width: unset;
    min-height: unset;
}