/* style/support.css */

/* --- Base Styles --- */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background from shared.css */
    padding-top: var(--header-offset, 120px); /* Ensure main content is not hidden by fixed header */
}

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

.page-support__dark-bg {
    background-color: #017439; /* Brand main color for sections */
    color: #ffffff;
}

.page-support__light-bg {
    background-color: #FFFFFF; /* White background for sections */
    color: #333333; /* Dark text for light background */
}

.page-support__section-title {
    font-size: 2.5em;
    color: inherit; /* Inherit color from parent section */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__section-description {
    font-size: 1.1em;
    color: inherit; /* Inherit color from parent section */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
    max-width: 100%; /* Ensure button doesn't overflow */
}

.page-support__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFFFF; /* Changed from #FFFF00 to #FFFFFF for WCAG AA contrast */
    border: 2px solid #C30808;
}

.page-support__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
    color: #fff;
}

.page-support__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-support__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #017439;
    border-color: #FFFFFF;
}

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

/* --- Hero Section --- */
.page-support__hero-section {
    position: relative;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 600px;
    background-color: #017439; /* Fallback for dark-bg, but hero is primary brand color */
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    color: #ffffff;
    padding: 20px;
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFF00; /* Emphasize title with yellow */
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-support__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3; /* Subtle background image */
}

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Darken image to ensure text contrast */
    /* No filter to change color, only brightness for contrast */
}

/* --- Why Choose Us Section --- */
.page-support__why-choose-us {
    padding: 80px 0;
}

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

.page-support__feature-card {
    background-color: #f8f8f8; /* Light background for card */
    color: #333333; /* Dark text for light background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__feature-icon {
    width: 200px; /* Min size 200x200 */
    height: 200px; /* Min size 200x200 */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-support__feature-card-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #017439; /* Brand color for title */
}

.page-support__feature-card-text {
    font-size: 1em;
    line-height: 1.7;
}

/* --- FAQ Section --- */
.page-support__faq-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Darker background for contrast with light-bg sections */
    color: #ffffff;
}

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