.page-support {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    padding-bottom: 50px; /* Ensure some space at the bottom */
}

.page-support__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px; /* Small top padding as per rule 5 */
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.page-support__hero-image {
    width: 100%;
    max-width: 1000px; /* Match img width */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-support__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
}

.page-support__hero-content {
    max-width: 800px;
}

.page-support__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Clamp for responsive H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFD36B; /* Using Glow color for main title */
}

.page-support__intro-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.page-support__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #111111; /* Dark text for bright button */
    border: none;
    cursor: pointer;
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-support__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4); /* Glow effect */
}

.page-support__cta-button--secondary {
    background: transparent;
    border: 2px solid #3A2A12; /* Border color */
    color: #FFF6D6; /* Text Main color */
}

.page-support__cta-button--secondary:hover {
    background: rgba(255, 211, 107, 0.1);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.2);
}

.page-support__popular-topics-section,
.page-support__faq-section,
.page-support__contact-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-support__section-title {
    font-size: clamp(1.75rem, 4vw, 2.8rem); /* Clamp for H2 */
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #F2C14E; /* Main color */
    position: relative;
    padding-bottom: 15px;
}

.page-support__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD36B 0%, #F2C14E 100%);
    border-radius: 2px;
}

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

.page-support__topic-card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #FFF6D6; /* Text Main */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.page-support__topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 211, 107, 0.2);
}

.page-support__card-icon {
    font-size: 3rem;
    line-height: 1;
    color: #FFD36B; /* Glow color */
}

.page-support__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #F2C14E; /* Main color */
}

.page-support__topic-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFF6D6; /* Text Main */
}

/* FAQ Accordion */
.page-support__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-support__accordion-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-support__accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    color: #FFF6D6; /* Text Main */
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-support__accordion-button:hover {
    background-color: rgba(255, 211, 107, 0.05);
}

.page-support__accordion-button[aria-expanded="true"] {
    background-color: rgba(255, 211, 107, 0.1);
}

.page-support__accordion-header {
    flex-grow: 1;
    color: #F2C14E; /* Main color */
}

.page-support__accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.page-support__accordion-icon::before,
.page-support__accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #FFD36B; /* Glow color */
    transition: transform 0.3s ease;
}

.page-support__accordion-icon::before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}

.page-support__accordion-icon::after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.page-support__accordion-button[aria-expanded="true"] .page-support__accordion-icon::before {
    transform: rotate(90deg);
}

.page-support__accordion-button[aria-expanded="true"] .page-support__accordion-icon::after {
    transform: rotate(180deg); /* Keep horizontal bar */
}


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

.page-support__accordion-content p {
    padding-bottom: 20px;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main */
}

.page-support__accordion-content a {
    color: #FFD36B; /* Glow color for links in content */
    text-decoration: none;
}

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

/* Contact Section */
.page-support__contact-section {
    text-align: center;
    padding-bottom: 80px;
}

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

.page-support__method-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 25px;
    flex: 1 1 250px; /* Allow flexible width */
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-support__method-icon {
    font-size: 3.5rem;
    color: #F2C14E; /* Main color */
}

.page-support__method-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFF6D6; /* Text Main */
}

.page-support__contact-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #111111; /* Dark text for bright button */
    border: none;
    cursor: pointer;
    margin-top: 20px;
    min-width: 250px;
}

.page-support__contact-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-support__contact-image {
    width: 100%;
    max-width: 800px; /* Match img width */
    margin: 40px auto 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-support__contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 850px) {
    .page-support__topic-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-support__method-item {
        flex: 1 1 200px;
    }
}

@media (max-width: 768px) {
    .page-support__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-support__section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .page-support__hero-section,
    .page-support__popular-topics-section,
    .page-support__faq-section,
    .page-support__contact-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-support__topic-grid {
        grid-template-columns: 1fr; /* Stack cards on small screens */
    }

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

    .page-support__cta-button,
    .page-support__contact-button {
        width: 100%;
        max-width: 300px; /* Limit button width for better appearance */
        margin-left: auto;
        margin-right: auto;
    }

    .page-support__method-item {
        flex: 1 1 100%; /* Stack contact methods */
        max-width: 100%;
    }

    /* Enforce image max-width for content area */
    .page-support__hero-image img,
    .page-support__contact-image img,
    .page-support__topic-card img, /* If topic cards had images */
    .page-support__accordion-content img /* If accordion content had images */
     {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area images are not smaller than 200px */
    .page-support img {
        min-width: 200px;
        min-height: 200px;
    }
}

/* Ensure no content area images are styled to be smaller than 200px */
/* This rule targets all images within .page-support that are not explicitly excluded (like shared header/footer icons) */
.page-support img {
    min-width: 200px; /* Enforce minimum display width */
    min-height: 200px; /* Enforce minimum display height */
    object-fit: cover; /* Maintain aspect ratio */
}

/* Specific overrides for potential small image styles if they were to exist, ensuring they meet the minimum */
/* These are defensive, as I am not generating small images. */
.page-support__card-icon,
.page-support__method-icon {
    /* These are text-based icons, not img tags, so they don't fall under the img size rule */
    font-size: 3rem; /* Example size */
}