.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text for light body background */
    background-color: #f8f8f8; /* Light background for the page content */
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background: linear-gradient(135deg, #FFD700, #8B0000); /* Brand colors for hero background */
    color: #ffffff; /* White text for dark/gradient background */
    overflow: hidden; /* Prevent image overflow */
}

.page-support__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-support__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-support__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    filter: none; /* Ensure no color filters are applied */
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-support__hero-section h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff; /* White text for hero title */
    line-height: 1.2;
}

.page-support__hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0; /* Slightly off-white for body text */
}

.page-support__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FFD700; /* Primary brand color */
    color: #8B0000; /* Contrasting text color for button */
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Responsive button */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__cta-button:hover {
    background: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-support__cta-button--large {
    padding: 18px 50px;
    font-size: 20px;
}

/* General Container & Titles */
.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    width: 100%; /* Ensure container takes full width on smaller screens */
}

.page-support__section-title {
    font-size: 2.2em;
    color: #8B0000; /* Auxiliary brand color for main titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* Channels Section */
.page-support__channels-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.page-support__channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__channel-card {
    background: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 450px; /* Ensure cards have similar height */
}

.page-support__channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-support__channel-card img {
    width: 100%;
    max-width: 400px; /* Max width for images in cards */
    height: auto;
    min-height: 200px; /* Minimum size for card images */
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    filter: none; /* Ensure no color filters */
}

.page-support__channel-card h3 {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 15px;
}

.page-support__channel-card p {
    color: #555555;
    font-size: 1em;
    flex-grow: 1; /* Allow paragraph to take available space */
    margin-bottom: 20px;
}

.page-support__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background: #8B0000; /* Auxiliary brand color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%; /* Responsive button */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__btn-secondary:hover {
    background: #a30000; /* Slightly darker red on hover */
}

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

.page-support__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ item styles */
.page-support__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-support__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-support__faq-question:active {
    background: #eeeeee;
}

.page-support__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.5;
    color: #333333; /* Dark text for question */
    pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-support__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #8B0000; /* Auxiliary brand color for toggle */
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none; /* Prevent icon from blocking click event */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-support__faq-item.active .page-support__faq-toggle {
    color: #FFD700; /* Primary brand color when active */
    transform: rotate(45deg); /* Plus to X rotation */
}

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
    padding: 0 25px;
    opacity: 0;
    background: #fcfcfc;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 2000px !important; /* Ensure enough space for content */
    padding: 20px 25px !important;
    opacity: 1;
    border: 1px solid #e0e0e0;
    border-top: none;
}

.page-support__faq-answer p {
    color: #555555;
    font-size: 0.95em;
    margin: 0;
}

/* Guides Section */
.page-support__guides-section {
    background-color: #ffffff;
    padding: 60px 0;
}

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

.page-support__guide-card {
    background: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 420px; /* Ensure cards have similar height */
}

.page-support__guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-support__guide-card img {
    width: 100%;
    max-width: 400px; /* Max width for images in cards */
    height: auto;
    min-height: 200px; /* Minimum size for card images */
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    filter: none; /* Ensure no color filters */
}

.page-support__guide-card h3 {
    font-size: 1.4em;
    color: #8B0000;
    margin-bottom: 10px;
}

.page-support__guide-card p {
    color: #555555;
    font-size: 0.95em;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-support__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: #FFD700;
    color: #8B0000; /* Contrasting text color */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%; /* Responsive button */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__btn-primary:hover {
    background: #e6c200;
}

/* Commitment Section */
.page-support__commitment-section {
    background-color: #f8f8f8;
    padding: 60px 0;
    text-align: center;
}

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

.page-support__commitment-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 300px; /* Consistent height for commitment items */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-support__commitment-item img {
    width: 200px; /* Ensure minimum 200px width */
    height: 200px; /* Ensure minimum 200px height */
    min-width: 200px;
    min-height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #FFD700;
    filter: none; /* Ensure no color filters */
}

.page-support__commitment-item h3 {
    font-size: 1.4em;
    color: #8B0000;
    margin-bottom: 10px;
}

.page-support__commitment-item p {
    color: #555555;
    font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__hero-section h1 {
        font-size: 2.5em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-support__hero-section h1 {
        font-size: 2em;
    }
    .page-support__hero-section p {
        font-size: 1em;
    }
    .page-support__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px; /* Add padding to prevent text touching edges */
        padding-right: 15px;
    }
    .page-support__cta-button--large {
        padding: 15px 40px;
        font-size: 18px;
    }

    .page-support__container {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

    .page-support__channels-grid,
    .page-support__guides-grid,
    .page-support__commitment-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-support__channel-card,
    .page-support__guide-card,
    .page-support__commitment-item {
        padding: 20px;
        min-height: auto; /* Allow height to adjust */
    }

    .page-support__channel-card img,
    .page-support__guide-card img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: 200px; /* Still enforce minimum image size */
    }
    .page-support__commitment-item img {
        width: 200px !important;
        height: 200px !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-support__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-support__faq-question h3 {
        font-size: 1em;
        width: calc(100% - 40px);
    }
    .page-support__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-support__faq-answer {
        padding: 0 15px;
    }
    .page-support__faq-item.active .page-support__faq-answer {
        padding: 15px !important;
    }

    /* All images in content area must be responsive and not cause overflow */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-support__channels-section,
    .page-support__faq-section,
    .page-support__guides-section,
    .page-support__commitment-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-support__channels-grid,
    .page-support__guides-grid,
    .page-support__commitment-points {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Ensure no filter on images */
.page-support img {
    filter: none !important;
}

/* Ensure content area images are not too small */
.page-support img:not(.shared-logo):not(.shared-icon) {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}