.page-support {
    font-family: Arial, sans-serif;
    color: #FFFFFF; /* Default text color for dark background */
    background-color: #100224; /* Dark background from WOW88 style */
}

.page-support__hero-section {
    display: flex;
    flex-direction: column; /* Default to column for mobile-first approach */
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px; /* Small top padding, more bottom padding */
    min-height: clamp(420px, 50vw, 800px); /* Responsive height */
    background-color: #017439; /* Primary color as hero background */
}

.page-support__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    margin-bottom: 20px; /* Space between image and content */
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

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

.page-support__hero-title {
    font-size: clamp(1.8rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF; /* Ensure high contrast */
}

.page-support__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0E0E0; /* Slightly lighter for readability */
}

.page-support__hero-cta,
.page-support__faq-cta,
.page-support__contact-cta {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(to right, #ff9500, #ff5e3a); /* Orange-red gradient CTA */
    color: #000000; /* Dark text for better contrast on bright orange/red gradient */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 150px;
    text-align: center;
    font-size: 1rem;
}

.page-support__hero-cta:hover,
.page-support__faq-cta:hover,
.page-support__contact-cta:hover {
    transform: translateY(-3px);
}

.page-support__services-section,
.page-support__faq-section,
.page-support__contact-methods-section,
.page-support__why-choose-us-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #100224; /* Consistent dark background for sections */
    border-radius: 10px;
    margin-bottom: 30px;
}

.page-support__services-title,
.page-support__faq-title,
.page-support__contact-methods-title,
.page-support__why-choose-us-title {
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFFFFF; /* High contrast */
}

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

.page-support__service-card {
    background-color: #017439; /* Primary color for cards */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px; /* Ensure cards are not too small */
}

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

.page-support__service-card-image {
    width: 100%; /* Card image width */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-support__service-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.page-support__service-card-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #E0E0E0;
    flex-grow: 1; /* Allows description to take up available space */
}

.page-support__faq-list {
    margin-top: 30px;
}

.page-support__faq-item {
    background-color: #017439; /* Primary color for FAQ items */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    color: #FFFFFF;
}

.page-support__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    color: #FFFFFF;
    position: relative;
    padding-right: 30px; /* Space for an expand icon */
}

/* Example for FAQ expand/collapse, JS would toggle a class */
.page-support__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    line-height: 1;
}

.page-support__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #E0E0E0;
    /* Initially hidden, JS would toggle display */
    display: block; /* For now, display all for content review */
}

.page-support__faq-cta {
    display: block;
    margin-top: 40px;
    text-align: center;
}

.page-support__contact-methods-content {
    display: flex;
    flex-direction: column; /* Default to column */
    gap: 30px;
    align-items: center;
}

.page-support__contact-methods-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-support__contact-details {
    max-width: 600px;
    color: #FFFFFF;
}

.page-support__contact-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #E0E0E0;
}

.page-support__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-support__contact-item {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-support__contact-item strong {
    color: #FFFFFF;
}

.page-support__contact-email,
.page-support__contact-phone {
    color: #FFFF00; /* Yellow for contact details */
    text-decoration: none;
}

.page-support__contact-email:hover {
    text-decoration: underline;
}

.page-support__contact-cta {
    display: block;
    margin-top: 20px;
    text-align: center;
}

.page-support__why-choose-us-content {
    display: flex;
    flex-direction: column; /* Default to column */
    gap: 30px;
    align-items: center;
}

.page-support__why-choose-us-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 700px; /* Constrain list width if image is next to it */
}

.page-support__why-choose-us-item {
    background-color: #017439; /* Primary color for items */
    border-radius: 8px;
    padding: 20px;
    color: #FFFFFF;
}

.page-support__why-choose-us-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.page-support__why-choose-us-item-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #E0E0E0;
}

.page-support__why-choose-us-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-support__hero-section {
        flex-direction: column; /* Keep column for hero for image above text */
        justify-content: center;
        padding-top: 40px; /* More padding for desktop */
    }

    .page-support__hero-image-wrapper {
        margin-bottom: 30px;
    }

    .page-support__services-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
    }

    .page-support__contact-methods-content,
    .page-support__why-choose-us-content {
        flex-direction: row; /* Image and text side-by-side */
        text-align: left;
        align-items: flex-start;
    }

    .page-support__contact-details,
    .page-support__why-choose-us-list {
        flex: 1;
    }

    .page-support__contact-methods-image,
    .page-support__why-choose-us-image {
        flex: 1;
        max-width: 50%; /* Image takes half width */
    }

    .page-support__contact-methods-content.reverse {
        flex-direction: row-reverse; /* For alternating layout */
    }
}

/* Mobile responsiveness for images, general content */
@media (max-width: 849px) {
    .page-support {
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }
    .page-support__hero-section {
        padding-left: 12px;
        padding-right: 12px;
    }
    .page-support__services-section,
    .page-support__faq-section,
    .page-support__contact-methods-section,
    .page-support__why-choose-us-section {
        padding: 30px 12px;
    }

    /* Ensure images do not overflow */
    .page-support img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* For hero section specifically, ensure no text overlap */
    .page-support__hero-image-wrapper {
        order: 1; /* Image first */
    }
    .page-support__hero-content {
        order: 2; /* Content second */
    }

    /* Prevent text from overlapping images */
    .page-support__hero-section {
        flex-direction: column; /* Always column on mobile */
    }
}

@media (max-width: 549px) {
    .page-support__services-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
}

/* CSS for FAQ expand/collapse functionality (JS would toggle a class like .is-active) */
.page-support__faq-item.is-active .page-support__faq-answer {
    display: block;
}
.page-support__faq-item.is-active .page-support__faq-question::after {
    content: '-';
}