.page-support {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-support__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background-color: #0A192F; /* Dark blue background for hero */
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-support__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-support__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-support__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 200px; /* Ensure button is large enough */
    text-align: center;
}

.page-support__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

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

.page-support__section-title {
    font-size: 2.5em;
    color: #0A192F; /* Dark blue for main titles */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-support__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-support__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
}

.page-support__faq-illustration {
    display: block;
    margin: 0 auto 40px auto;
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-support__faq-category {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    padding: 30px;
}

.page-support__category-title {
    font-size: 2em;
    color: #0A192F;
    margin-bottom: 25px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-support__faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 20px;
}

.page-support__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-support__question {
    font-size: 1.3em;
    color: #0A192F;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-support__answer {
    font-size: 1em;
    color: #555555;
    padding-left: 20px;
    margin-top: 10px;
    display: none; /* Hidden by default, toggled by JS */
}

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

.page-support__contact-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-support__contact-card:hover {
    transform: translateY(-5px);
}

.page-support__contact-icon {
    width: 100%;
    height: auto;
    max-width: 400px; /* Adjust max-width to ensure min 200px */
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-support__card-title {
    font-size: 1.8em;
    color: #0A192F;
    margin-bottom: 15px;
}

.page-support__card-description {
    font-size: 1em;
    color: #666666;
    margin-bottom: 25px;
}

.page-support__contact-button {
    display: inline-block;
    background-color: #0A192F; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 150px;
    text-align: center;
}

.page-support__contact-button:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.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-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-support__resource-card:hover {
    transform: translateY(-3px);
}

.page-support__resource-card .page-support__card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-support__resource-card .page-support__card-title a {
    color: #0A192F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__resource-card .page-support__card-title a:hover {
    color: #FFD700;
}

.page-support__resource-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Adjust max-width to ensure min 200px */
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 15px auto;
}

.page-support__resource-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    position: relative;
    padding-bottom: 3px;
}

.page-support__resource-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #FFD700;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.page-support__resource-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.page-support__final-cta-section {
    background-color: #0A192F;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    margin-top: 50px;
}

.page-support__final-cta-section .page-support__section-title {
    color: #FFD700;
}

.page-support__final-cta-section .page-support__section-title::after {
    background-color: #f0f0f0;
}

.page-support__final-cta-section .page-support__section-intro {
    color: #f0f0f0;
    margin-bottom: 50px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }

    .page-support__hero-description {
        font-size: 1em;
    }

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

    .page-support__category-title {
        font-size: 1.5em;
    }

    .page-support__question {
        font-size: 1.1em;
    }

    .page-support__contact-methods,
    .page-support__resource-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure images in content area are responsive and don't overflow */
    .page-support img {
        max-width: 100%;
        height: auto;
    }

    /* Specific override for contact/resource cards to ensure images are large enough */
    .page-support__contact-icon, .page-support__faq-illustration, .page-support__resource-image {
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px;
        width: 100%; /* Take full width of parent */
        max-width: 100%; /* Prevent overflow */
    }

    /* Ensure no horizontal scrolling */
    .page-support {
        overflow-x: hidden;
    }

    .page-support__hero-container, .page-support__content-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-support__hero-section {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    }
}