.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    padding-bottom: 20px; /* Ensure space before footer */
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    color: #ffffff; /* Text color for hero section */
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #C91F17 0%, #E53935 100%); /* Brand colors for hero background */
}

.page-support__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit height for aesthetic */
}

.page-support__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-support__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFF5E1; /* Text Main color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-support__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
    color: #7A0E0E; /* Deep Red for text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #F2B544; /* Border color */
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Common Section Styles */
.page-support__section-title {
    font-size: 2.5em;
    color: #C91F17; /* Main brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-support__text-block {
    margin-bottom: 1em;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-support__light-bg {
    background: #ffffff; /* Default light background */
    color: #333333;
    padding: 60px 0;
}

.page-support__dark-section {
    background: #B71C1C; /* Background color */
    color: #FFF5E1; /* Text Main color */
    padding: 60px 0;
}

.page-support__dark-section .page-support__section-title {
    color: #FFF5E1; /* Text Main color for titles on dark background */
}

.page-support__text-main {
    color: #FFF5E1; /* Specific text main color */
}

/* Contact Methods Section */
.page-support__method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__method-card {
    background: #D32F2F; /* Card BG color */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #F2B544; /* Border color */
}

.page-support__method-icon {
    width: 100%;
    height: auto;
    max-width: 200px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-support__card-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
    color: #FFF5E1; /* Text Main color */
}

.page-support__card-text {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #FFF5E1; /* Text Main color */
}

.page-support__btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
    color: #7A0E0E; /* Deep Red for text on gold button */
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    border: 2px solid #F2B544; /* Border color */
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__btn-primary:hover {
    transform: translateY(-2px);
}

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

.page-support__faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #333333;
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    background: #f9f9f9;
    color: #C91F17; /* Main brand color for questions */
    transition: background 0.3s ease;
    user-select: none;
    list-style: none; /* For details/summary */
}

.page-support__faq-item[open] > .page-support__faq-question {
    background: #f0f0f0;
}

.page-support__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-support__faq-item summary::marker {
    display: none;
}

.page-support__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #C91F17; /* Main brand color */
    margin-left: 15px;
}

.page-support__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    line-height: 1.7;
    color: #555555;
}

/* Resources Section */
.page-support__resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__resource-card {
    background: #D32F2F; /* Card BG color */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #F2B544; /* Border color */
}

.page-support__resource-icon {
    width: 100%;
    height: auto;
    max-width: 150px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Us Section */
.page-support__why-choose-us {
    padding: 60px 0;
    background: #ffffff;
    color: #333333;
}

/* Bottom CTA Section */
.page-support__cta-bottom {
    padding: 80px 0;
    text-align: center;
    background: #B71C1C; /* Background color */
}

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

.page-support__cta-bottom .page-support__section-title {
    color: #FFF5E1; /* Text Main color */
    margin-bottom: 20px;
}

.page-support__cta-bottom .page-support__description {
    color: #FFF5E1; /* Text Main color */
    margin-bottom: 40px;
}

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

.page-support__btn-secondary {
    display: inline-block;
    background: #ffffff;
    color: #C91F17; /* Main brand color */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, color 0.3s ease;
    border: 2px solid #C91F17; /* Main brand color for border */
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__btn-secondary:hover {
    background: #f0f0f0;
    color: #E53935; /* Auxiliary brand color */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-support__container {
        padding: 20px 30px;
    }

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

    .page-support__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-support__method-grid,
    .page-support__resource-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-support__hero-section {
        padding-top: 10px !important; /* Small top padding, body handles header offset */
        padding-bottom: 30px;
    }

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

    .page-support__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem); /* Smaller for mobile */
        margin-bottom: 15px;
    }

    .page-support__description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-support__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* General Content Sections */
    .page-support__container {
        padding: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

    .page-support__light-bg,
    .page-support__dark-section,
    .page-support__why-choose-us {
        padding: 40px 0;
    }

    .page-support__text-block {
        font-size: 0.95em;
    }

    /* Images and Image Containers */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-support__hero-image-wrapper,
    .page-support__method-card,
    .page-support__resource-card,
    .page-support__card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Method and Resource Grids */
    .page-support__method-grid,
    .page-support__resource-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 20px;
    }

    /* Buttons and Button Groups */
    .page-support__btn-primary,
    .page-support__btn-secondary,
    .page-support a[class*="button"],
    .page-support a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-support__button-group {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 10px;
    }

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

    .page-support__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.95em;
    }

    /* Bottom CTA */
    .page-support__cta-bottom {
        padding: 50px 0;
    }
}