.page-support {
    background-color: #140C0C; /* Background */
    color: #FFF1E8; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Add some padding at the bottom */
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.page-support a {
    color: #F3C54D; /* Gold */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support a:hover {
    color: #FFB04A; /* Lighter gold/orange from button gradient */
}

/* Section specific styles */
.page-support__hero-section {
    position: relative;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px;
}

.page-support__hero-banner {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.page-support__hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5; /* 1920x600 */
    object-fit: cover;
    object-position: center;
    filter: none; /* Ensure no grayscale */
}

.page-support__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 0;
}

.page-support__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted for support page, still using clamp */
    color: #FFF1E8; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-support__hero-description {
    font-size: 1.1rem;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
    color: #140C0C; /* Dark text for contrast */
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-support__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 176, 74, 0.3);
    color: #140C0C; /* Ensure text color remains dark on hover */
}

/* General section styling */
.page-support__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #FFF1E8; /* Text Main */
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-support__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #F3C54D; /* Gold */
    margin: 10px auto 0;
}

.page-support__section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    color: #FFF1E8; /* Text Main */
}

/* Category Grid */
.page-support__categories-section,
.page-support__faq-section,
.page-support__contact-options-section,
.page-support__additional-resources,
.page-support__final-cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    margin-bottom: 40px;
}

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

.page-support__category-card,
.page-support__contact-card {
    background-color: #2A1212; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.2s ease;
    border: 1px solid #6A1E1E; /* Border */
}

.page-support__category-card:hover,
.page-support__contact-card:hover {
    transform: translateY(-5px);
}

.page-support__category-card img,
.page-support__contact-card img {
    width: 100%;
    height: 267px; /* For 600x400 aspect ratio in display */
    object-fit: cover;
    display: block;
    filter: none; /* Ensure no grayscale */
    border-bottom: 1px solid #6A1E1E; /* Border */
    min-width: 200px;
    min-height: 200px;
}
.page-support__contact-card img {
    height: 225px; /* For 400x300 aspect ratio in display */
}

.page-support__card-title {
    font-size: 1.3rem;
    color: #FFF1E8; /* Text Main */
    margin: 15px 10px 10px;
    font-weight: bold;
}

.page-support__card-title a {
    color: #FFF1E8; /* Text Main for title links */
    transition: color 0.3s ease;
}

.page-support__card-title a:hover {
    color: #F3C54D; /* Gold */
}

.page-support__card-description {
    font-size: 0.95rem;
    color: #FFF1E8; /* Text Main */
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-support__contact-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
    color: #140C0C; /* Dark text for contrast */
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95rem;
    margin: 0 15px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-support__contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(255, 176, 74, 0.3);
    color: #140C0C; /* Ensure text color remains dark on hover */
}

/* FAQ Section */
.page-support__faq-list {
    margin-top: 30px;
}

.page-support__faq-item {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
    font-size: 1.15rem;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
    cursor: pointer; /* Implies accordion functionality, though not implemented in JS */
}

.page-support__faq-answer {
    font-size: 1rem;
    color: #FFF1E8; /* Text Main */
    padding-left: 5px;
}

.page-support__view-all-faq-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    padding: 10px 25px;
    background-color: #7E0D0D; /* Deep Red */
    color: #FFF1E8; /* Text Main */
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-support__view-all-faq-button:hover {
    background-color: #E53030; /* Auxiliary color */
    color: #FFF1E8;
}

/* Additional Resources */
.page-support__resources-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 0;
    text-align: center;
}

.page-support__resources-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.page-support__resources-list li a {
    color: #F3C54D; /* Gold */
}

.page-support__resources-list li a:hover {
    color: #FFB04A; /* Lighter gold/orange */
}

/* Final CTA Section */
.page-support__final-cta-section {
    text-align: center;
    margin-top: 60px;
}

.page-support__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-support__cta-button--primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
    color: #140C0C; /* Dark text for contrast */
}

.page-support__cta-button--secondary {
    background-color: #7E0D0D; /* Deep Red */
    color: #FFF1E8; /* Text Main */
}

.page-support__cta-button--secondary:hover {
    background-color: #E53030; /* Auxiliary color */
    box-shadow: 0 5px 15px rgba(229, 48, 48, 0.3);
    color: #FFF1E8;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-support__hero-content {
        padding: 20px 0;
    }

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

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

    .page-support__section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }

    .page-support__category-grid,
    .page-support__contact-grid {
        grid-template-columns: 1fr; /* Single column on smaller mobiles */
        gap: 20px;
    }

    .page-support__category-card img,
    .page-support__contact-card img {
        height: auto; /* Allow image to scale proportionally */
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Ensure content images are responsive and don't overflow */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
    .page-support__hero-banner img {
        aspect-ratio: 16/9; /* More common on mobile for hero */
    }
}

@media (max-width: 549px) {
    .page-support__hero-section {
        padding-left: 10px;
        padding-right: 10px;
    }

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

    .page-support__hero-description {
        font-size: 0.95rem;
    }

    .page-support__cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

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

    .page-support__category-grid,
    .page-support__contact-grid {
        grid-template-columns: 1fr; /* Single column */
    }

    .page-support__faq-question {
        font-size: 1.05rem;
    }

    .page-support__faq-answer {
        font-size: 0.9rem;
    }

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

    .page-support__cta-button {
        width: 100%;
        max-width: 280px; /* Constrain width for single column buttons */
    }
}