.page-support {
    color: #333333; /* Dark text for light body background */
}

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

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

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

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

.page-support__hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FCBC45; /* Login button color for emphasis */
}

.page-support__hero-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #ffffff;
}

.page-support__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-support__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-support__button--primary {
    background-color: #FCBC45; /* Login button color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-support__button--primary:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

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

.page-support__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-support__button--tertiary {
    background-color: #000000;
    color: #FCBC45;
    border: 2px solid #FCBC45;
}

.page-support__button--tertiary:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

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

.page-support__section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

.page-support__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #333333;
}

.page-support__faq-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

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

.page-support__faq-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__faq-question {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
}

.page-support__faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

.page-support__link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support__link:hover {
    color: #e0a53b;
    text-decoration: underline;
}

.page-support__more-faq-button-container {
    text-align: center;
    margin-top: 50px;
}

.page-support__contact-section {
    background-color: #f2f2f2;
    padding: 60px 0;
}

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

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

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

.page-support__contact-icon {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-support__contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.page-support__contact-text {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 25px;
}

.page-support__resources-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

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

.page-support__resource-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__resource-image {
    width: 100%;
    height: 267px; /* Maintain aspect ratio for 400x267 */
    object-fit: cover;
}

.page-support__resource-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 20px 20px 10px 20px;
    color: #000000;
}

.page-support__resource-link {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
}

.page-support__resource-link:hover {
    color: #FCBC45;
}

.page-support__resource-text {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    padding: 0 20px 20px 20px;
}

.page-support__view-all-resources-container {
    text-align: center;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 3rem;
    }

    .page-support__hero-description {
        font-size: 1.1rem;
    }

    .page-support__section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
        padding-bottom: 40px;
    }

    .page-support__hero-title {
        font-size: 2.5rem;
    }

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

    .page-support__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-support__button {
        width: 100%;
        max-width: 280px;
    }

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

    .page-support__section-description {
        font-size: 0.95rem;
    }

    .page-support__faq-grid,
    .page-support__contact-grid,
    .page-support__resources-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure content area images are responsive and not smaller than 200px display */
    .page-support img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum display size */
        min-height: 200px; /* Enforce minimum display size */
    }
    
    .page-support__contact-icon, .page-support__resource-image {
        width: 100%; /* Ensure images scale down */
        height: auto;
        max-width: 400px; /* Example max-width for smaller screens */
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 2rem;
    }

    .page-support__section-title {
        font-size: 1.8rem;
    }

    .page-support__faq-question {
        font-size: 1.2rem;
    }

    .page-support__contact-title {
        font-size: 1.3rem;
    }
}