:root {
    --main-color: #2F6BFF;
    --aux-color: #6FA3FF;
    --button: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --background: #F4F7FB;
    --text-main: #1F2D3D;
    --custom-color-1776249996415: #000000; /* This is black, so it can be used for general text. */
    --border: #D6E2FF;
    --glow: #A5C4FF;
}

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

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

/* Hero Section */
.page-support__hero-section {
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    text-align: center;
    padding: 40px 20px 60px;
    background: linear-gradient(180deg, var(--main-color) 0%, var(--aux-color) 100%); /* Using main and aux colors for background */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-radius: 15px; /* Added for visual appeal */
    margin-bottom: 40px;
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px; /* Space between image and text */
    border-radius: 10px;
    overflow: hidden;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-support__hero-content {
    max-width: 900px;
    position: relative; /* Ensure content is not positioned over image */
    z-index: 1;
}

.page-support__main-title {
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    /* No fixed font-size, rely on clamp if needed, otherwise browser default for h1 */
    /* clamp(2rem, 5vw, 3.5rem) can be used if explicit size control is needed */
}

.page-support__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-support__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-support__cta-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 150px;
    text-align: center;
    white-space: nowrap;
}

.page-support__cta-button--primary {
    background: var(--button); /* linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%) */
    color: #FFFFFF;
    border: 2px solid var(--main-color);
}

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

.page-support__cta-button--secondary {
    background-color: #FFFFFF;
    color: var(--main-color); /* #2F6BFF */
    border: 2px solid #FFFFFF;
}

.page-support__cta-button--secondary:hover {
    background-color: var(--main-color);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.page-support__section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--text-main); /* #1F2D3D */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

/* Contact Methods Section */
.page-support__contact-methods {
    padding: 60px 0;
    background-color: var(--card-bg); /* #FFFFFF */
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.page-support__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-support__method-card {
    background-color: #F8F9FA; /* Slightly different background for cards */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border); /* #D6E2FF */
}

.page-support__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-support__method-icon {
    width: 100%; /* Make icon responsive within card */
    max-width: 250px; /* Max width for consistency */
    height: auto;
    margin: 0 auto 20px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-support__method-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main); /* #1F2D3D */
    margin-bottom: 15px;
}

.page-support__method-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--custom-color-1776249996415); /* #000000 */
    margin-bottom: 25px;
}

.page-support__method-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--button); /* linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%) */
    color: #FFFFFF;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-support__method-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 0;
}

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

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

.page-support__faq-question {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--main-color); /* #2F6BFF */
    margin-bottom: 15px;
    cursor: pointer;
}

.page-support__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--custom-color-1776249996415); /* #000000 */
    display: block; /* Initially visible, JS can toggle */
}

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

/* Important Links Section */
.page-support__important-links {
    padding: 60px 0;
    background-color: var(--card-bg); /* #FFFFFF */
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.page-support__links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.page-support__links-list li {
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, background-color 0.2s ease;
    border: 1px solid var(--border); /* #D6E2FF */
}

.page-support__links-list li:hover {
    transform: translateY(-2px);
    background-color: var(--aux-color); /* #6FA3FF */
}

.page-support__links-list li a {
    text-decoration: none;
    font-weight: bold;
    color: var(--main-color); /* #2F6BFF */
    display: block;
    transition: color 0.2s ease;
}

.page-support__links-list li:hover a {
    color: #FFFFFF;
}

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

    .page-support__main-title {
        font-size: clamp(1.8rem, 5vw, 2rem); /* Using clamp for responsive font size */
    }

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

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

    .page-support__section-title {
        font-size: clamp(1.6rem, 5vw, 1.8rem); /* Using clamp for responsive font size */
        margin-bottom: 30px;
    }

    .page-support__contact-methods,
    .page-support__faq-section,
    .page-support__important-links {
        padding: 40px 0;
    }

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

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

    /* Mobile overflow fix for images */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content images meet minimum size in CSS */
.page-support__method-icon,
.page-support__hero-image {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Ensure they scale down but don't go below min */
    height: auto;
}

/* CSS for general images within content area */
.page-support img {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Fallback for any other image */
    height: auto;
}