.page-support {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF; /* Using white as main background for the page content, contrasting with dark header/footer */
    color: #333333; /* Default text color for good contrast on white background */
    line-height: 1.6;
}

.page-support__hero-section {
    position: relative;
    background-color: #017439; /* Primary color for hero background */
    color: #FFFFFF;
    padding: 10px 0 40px; /* Small top padding, larger bottom padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image container */
    margin: 0 auto;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9; /* Maintain aspect ratio */
    filter: none; /* No filter on images */
}

.page-support__hero-content {
    max-width: 900px;
    padding: 20px;
    margin-top: 20px; /* Space between image and content */
    z-index: 1; /* Ensure content is above any potential background elements */
    width: 100%; /* Ensure content takes full width on mobile */
}

.page-support__main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem); /* Responsive font size for H1 */
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFFFFF; /* White for contrast */
    line-height: 1.2;
}

.page-support__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #E0E0E0; /* Slightly off-white for description */
}

.page-support__cta-button {
    display: inline-block;
    background-color: #C30808; /* Register/Login color */
    color: #FFFFFF; /* Adjusted to white for WCAG AA contrast on red background */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 200px; /* Ensure sufficient touch target */
    text-align: center;
}

.page-support__cta-button:hover {
    background-color: #a00606; /* Darker red on hover */
}

.page-support__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #017439; /* Primary color for section titles */
    padding-top: 40px;
}

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

.page-support__intro-section {
    padding: 40px 20px;
    background-color: #F8F8F8; /* Light grey background for this section */
}

.page-support__services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-support__service-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px 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;
}

.page-support__service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-support__service-icon {
    width: 250px; /* Ensure images are not too small */
    height: auto;
    max-height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: none; /* No filter on images */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-support__card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #017439; /* Primary color */
}

.page-support__card-text {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow text to take available space */
}

.page-support__card-link {
    display: inline-block;
    background-color: #017439; /* Primary color */
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 150px;
    text-align: center;
}

.page-support__card-link:hover {
    background-color: #005a2e; /* Darker green on hover */
}

.page-support__faq-section {
    padding: 40px 20px;
    background-color: #FFFFFF;
}

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

.page-support__faq-item {
    background-color: #F8F8F8;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
    font-size: 1.15rem;
    font-weight: bold;
    color: #017439; /* Primary color */
    margin-bottom: 10px;
    cursor: pointer; /* Indicate clickable */
    position: relative;
    padding-right: 30px; /* Space for icon */
}

.page-support__faq-question--collapsible::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    line-height: 1;
    color: #017439;
    transition: transform 0.3s ease;
}

.page-support__faq-question--active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg); /* No rotation for minus */
}

.page-support__faq-answer {
    font-size: 1rem;
    color: #555555;
}

.page-support__view-all-faq-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    background-color: #C30808; /* Register/Login color */
    color: #FFFFFF; /* Adjusted to white for WCAG AA contrast on red background */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-support__view-all-faq-button:hover {
    background-color: #a00606;
}

.page-support__contact-cta-section {
    padding: 60px 20px;
    background-color: #017439; /* Primary color background */
    color: #FFFFFF;
    text-align: center;
}

.page-support__contact-cta-section .page-support__section-title,
.page-support__contact-cta-section .page-support__section-description {
    color: #FFFFFF; /* White text on green background */
}

.page-support__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-support__contact-button {
    display: inline-block;
    background-color: #C30808; /* Register/Login color */
    color: #FFFFFF; /* Adjusted to white for WCAG AA contrast on red background */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 220px;
    text-align: center;
}

.page-support__contact-button:hover {
    background-color: #a00606;
}

.page-support__contact-button--secondary {
    background-color: #FFFFFF; /* White background for secondary button */
    color: #017439; /* Primary color text */
}

.page-support__contact-button--secondary:hover {
    background-color: #E0E0E0; /* Light grey on hover */
    color: #017439;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__hero-content {
        margin-top: 10px;
        padding: 15px;
    }

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

    .page-support__description {
        font-size: 1rem;
    }

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

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

    .page-support__service-icon,
    .page-support__service-card img { /* Apply to all images within content sections */
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }

    .page-support__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 549px) {
    .page-support__hero-section {
        padding: 5px 0 20px;
    }
    .page-support__hero-image {
        aspect-ratio: 4/3; /* Adjust aspect ratio for mobile hero */
    }
    .page-support__main-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }
    .page-support__cta-button,
    .page-support__view-all-faq-button,
    .page-support__contact-button {
        width: 100%;
        max-width: 300px; /* Constrain width for smaller buttons */
    }
    .page-support__service-card {
        padding: 20px;
    }
    .page-support__faq-item {
        padding: 15px;
    }
}

/* Ensure images within content sections are not smaller than 200px and responsive */
.page-support img {
    max-width: 100%;
    height: auto;
    object-fit: cover; /* Default to cover for general images, can be overridden */
}

/* Specific rule to prevent small images in content areas */
.page-support__services-grid img,
.page-support__faq-list img,
.page-support__contact-cta-section img {
    min-width: 200px;
    min-height: 200px;
}