.page-support {
    color: #333333; /* Dark text for default light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-support__hero-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.1));
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-support__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7); /* Darken image for text readability */
}

.page-support__hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support__hero-title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

.page-support__button--primary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid #FFD700;
}

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

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

.page-support__button--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-2px);
}

.page-support__button--tertiary {
    background-color: #8B0000;
    color: #ffffff;
    border: 2px solid #8B0000;
}

.page-support__button--tertiary:hover {
    background-color: #6a0000;
    border-color: #6a0000;
    transform: translateY(-2px);
}

.page-support__section-title {
    font-size: 2.5em;
    color: #8B0000;
    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-subtitle {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.page-support__faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #FFD700;
}

.page-support__faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-support__faq-question {
    font-size: 1.4em;
    color: #8B0000;
    margin-bottom: 15px;
}

.page-support__faq-answer {
    font-size: 1em;
    color: #555555;
}

.page-support__faq-answer a {
    color: #8B0000;
    text-decoration: none;
    font-weight: bold;
}

.page-support__faq-answer a:hover {
    text-decoration: underline;
}

.page-support__faq-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background-color: #fff8e1; /* Light gold background */
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid #FFD700;
}

.page-support__faq-image {
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__faq-cta-text {
    font-size: 1.3em;
    color: #333333;
    font-weight: bold;
}

.page-support__contact-methods-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-support__contact-card {
    background-color: #fefefe;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 5px solid #8B0000;
}

.page-support__contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-support__contact-icon {
    width: 200px; /* Enforced min size */
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(139, 0, 0, 0.3));
}

.page-support__contact-title {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 10px;
}

.page-support__contact-description {
    font-size: 0.95em;
    color: #666666;
    margin-bottom: 20px;
}

.page-support__resources-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.page-support__resource-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-support__resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-support__resource-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.page-support__resource-card:hover .page-support__resource-image {
    transform: scale(1.05);
}

.page-support__resource-title {
    font-size: 1.3em;
    color: #8B0000;
    padding: 20px 20px 10px;
}

.page-support__resource-title a {
    color: inherit;
    text-decoration: none;
}

.page-support__resource-title a:hover {
    text-decoration: underline;
    color: #FFD700;
}

.page-support__resource-description {
    font-size: 0.9em;
    color: #666666;
    padding: 0 20px 20px;
}

.page-support__cta-section {
    background-color: #8B0000;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-support__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-support__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 2.8em;
    }
    .page-support__hero-description {
        font-size: 1.1em;
    }
    .page-support__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-support {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    }
    .page-support__hero-section {
        padding: 60px 20px;
        min-height: 400px;
    }
    .page-support__hero-title {
        font-size: 2.2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__button {
        width: 100%;
        max-width: 300px;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__section-subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-support__faq-section, .page-support__contact-methods-section, .page-support__resources-section, .page-support__cta-section {
        padding: 60px 0;
    }
    .page-support__faq-grid, .page-support__contact-grid, .page-support__resources-grid {
        grid-template-columns: 1fr;
    }
    .page-support__faq-item, .page-support__contact-card, .page-support__resource-card {
        padding: 25px;
    }
    .page-support__faq-question {
        font-size: 1.2em;
    }
    .page-support__faq-cta {
        padding: 30px;
    }
    .page-support__faq-image {
        max-width: 100%;
        width: 100%; /* Ensure mobile images don't overflow */
        height: auto;
    }
    .page-support__contact-icon {
        width: 150px;
        height: auto;
    }
    .page-support__cta-title {
        font-size: 2em;
    }
    .page-support__cta-description {
        font-size: 1em;
    }
    /* Mobile image overflow prevention */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
    .page-support__hero-section .page-support__hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__cta-title {
        font-size: 1.8em;
    }
    .page-support__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}