.page-support {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Main text color */
    line-height: 1.6;
}

.page-support__container {
    max-width: 1280px; /* Adjusted from 1200-1390px range */
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    padding-bottom: 40px; /* Spacing below the hero content */
    text-align: center;
    background-color: #FFFFFF; /* Card BG for this section */
    overflow: hidden; /* Ensure image doesn't overflow */
    border-bottom: 1px solid #D6E2FF; /* Border color */
}

.page-support__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 400px; /* Limit height for visual balance */
    margin-bottom: 20px; /* Space between image and content */
}

.page-support__hero-content {
    padding: 0 20px;
    max-width: 900px; /* Constraint for text width */
    margin: 0 auto;
}

.page-support__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    padding-top: 10px; /* Small top padding for the first section */
    /* No fixed font-size, rely on clamp if needed, otherwise browser default for h1 */
    /* Example for clamp if absolutely necessary: font-size: clamp(2rem, 5vw, 3.5rem); */
}

.page-support__hero-description {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
}

/* Section Titles */
.page-support__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

/* Quick Links Section */
.page-support__quick-links-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background color */
}

.page-support__links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

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

.page-support__link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-support__card-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #2F6BFF; /* Main Color */
    margin-bottom: 10px;
}

.page-support__card-description {
    font-size: 0.95em;
    color: #1F2D3D; /* Text Main */
}

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

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

.page-support__faq-item {
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-support__faq-question {
    font-size: 1.2em;
    font-weight: 600;
    color: #1F2D3D; /* Text Main */
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    background-color: #F4F7FB; /* Background color */
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.5em;
    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 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #FFFFFF; /* Card BG */
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 300px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.page-support__faq-answer p {
    margin-bottom: 10px;
    color: #1F2D3D; /* Text Main */
}

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

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

/* Contact CTA Section */
.page-support__contact-cta-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background color */
}

.page-support__contact-card {
    background-color: #FFFFFF; /* Card BG */
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
}

.page-support__contact-card .page-support__section-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2em;
}

.page-support__contact-card .page-support__description {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-support__contact-button,
.page-support__login-register-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    margin: 10px;
    transition: all 0.3s ease;
    color: #FFFFFF;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    border: none;
    cursor: pointer;
}

.page-support__contact-button:hover,
.page-support__login-register-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.3); /* Glow color */
}

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

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

    .page-support__main-title {
        font-size: 2em; /* Adjusted for smaller screens */
        padding-top: 5px;
    }

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

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

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

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

    .page-support__faq-item.active .page-support__faq-answer {
        padding: 15px 20px;
    }

    .page-support__contact-card {
        padding: 30px;
    }

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

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

    .page-support__contact-button,
    .page-support__login-register-button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
    }

    /* Ensure images in content areas are responsive and not too small */
    .page-support img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum width for all content images */
        min-height: 200px; /* Enforce minimum height for all content images */
        object-fit: cover;
    }

    .page-support__hero-image {
        min-width: unset; /* Hero image can be wider */
        min-height: unset;
    }
}

/* Ensure no content area image is smaller than 200px */
.page-support img:not(.page-support__hero-image) {
    min-width: 200px;
    min-height: 200px;
}