.page-support {
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure some padding at the bottom */
}

.page-support__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #0a0909; /* Deep red/black for hero background */
    color: #FFFFFF;
    text-align: center;
    padding-bottom: 40px;
}

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

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

.page-support__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-support__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #d6d604; /* Yellow-green accent for H1 */
    margin-bottom: 15px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-support__intro-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-support__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.page-support__cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-support__common-issues-section,
.page-support__contact-methods-section,
.page-support__resources-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.page-support__section-description {
    text-align: center;
    font-size: 1rem;
    color: #1F2D3D;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-support__issue-card,
.page-support__contact-card {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px; /* Ensure cards have enough height */
}

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

.page-support__card-image {
    max-width: 100%;
    height: 180px; /* Fixed height for consistent card image display */
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

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

.page-support__card-title a {
    color: #000000;
    text-decoration: none;
}

.page-support__card-title a:hover {
    color: #2F6BFF;
    text-decoration: underline;
}

.page-support__card-text {
    font-size: 0.95rem;
    color: #1F2D3D;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-support__view-all-faq-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 0.95rem;
}

.page-support__view-all-faq-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

.page-support__contact-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 0.9rem;
    margin-top: auto; /* Push button to bottom */
}

.page-support__contact-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-support__resources-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.page-support__resources-list li {
    margin-bottom: 10px;
}

.page-support__resources-list a {
    color: #2F6BFF;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

.page-support__resources-list a:hover {
    color: #1F2D3D;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding-bottom: 30px;
    }

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

    .page-support__intro-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-support__cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .page-support__common-issues-section,
    .page-support__contact-methods-section,
    .page-support__resources-section {
        margin: 30px 15px;
        padding: 15px;
    }

    .page-support__section-title {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .page-support__section-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .page-support__issues-grid,
    .page-support__contact-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-support__issue-card,
    .page-support__contact-card {
        min-height: auto;
    }

    .page-support__card-image {
        height: 150px; /* Adjust height for smaller screens */
    }

    .page-support__card-title {
        font-size: 1.2rem;
    }

    .page-support__card-text {
        font-size: 0.85rem;
    }

    .page-support__view-all-faq-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .page-support__contact-button {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .page-support__resources-list a {
        font-size: 0.95rem;
    }

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