.page-support {
    color: #333333; /* Dark text for light body background */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-support__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    color: #ffffff;
    background-color: #0A2342;
}

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

.page-support__hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Gold for emphasis */
}

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

.page-support__hero-actions {
    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;
    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: #0A2342;
    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: #0A2342;
    transform: translateY(-2px);
}

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

.page-support__section-title {
    font-size: 2.5em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 20px;
}

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

.page-support__faq-section {
    background-color: #f9f9f9;
    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: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__faq-question {
    font-size: 1.4em;
    color: #0A2342;
    margin-bottom: 15px;
    cursor: pointer;
}

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

.page-support__faq-answer a {
    color: #0A2342;
    text-decoration: underline;
}

.page-support__faq-answer a:hover {
    color: #FFD700;
}

.page-support__contact-section {
    background-color: #ffffff;
    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: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-support__contact-icon {
    width: 250px;
    height: 187px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-support__contact-card-title {
    font-size: 1.5em;
    color: #0A2342;
    margin-bottom: 10px;
}

.page-support__contact-card-text {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-support__button--card {
    width: 100%;
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #0A2342;
    padding: 12px 20px;
    font-size: 1em;
}

.page-support__button--card:hover {
    background-color: #FFD700;
    color: #0A2342;
    border-color: #FFD700;
}

.page-support__guides-section {
    background-color: #f0f0f0;
    padding: 60px 0;
}

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

.page-support__guide-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #333333;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-support__guide-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.page-support__guide-title {
    font-size: 1.3em;
    color: #0A2342;
    margin: 20px 20px 10px 20px;
}

.page-support__guide-text {
    font-size: 0.95em;
    color: #555555;
    line-height: 1.6;
    padding: 0 20px 20px 20px;
    flex-grow: 1;
}

.page-support__view-all-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-support__button--view-all {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #0A2342;
}

.page-support__button--view-all:hover {
    background-color: #FFD700;
    color: #0A2342;
    border-color: #FFD700;
}

/* Responsive adjustments */
@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: 2em;
    }

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

@media (max-width: 768px) {
    .page-support__hero-section {
        min-height: 400px;
        padding: 40px 15px;
    }

    .page-support__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-support__button {
        width: 80%;
        max-width: 300px;
        padding: 12px 25px;
    }

    .page-support__container {
        padding: 20px 15px;
    }

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

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

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

    .page-support__faq-item, .page-support__contact-card, .page-support__guide-card {
        padding: 20px;
    }

    .page-support__faq-question {
        font-size: 1.1em;
    }

    .page-support__contact-icon {
        width: 200px;
        height: 150px;
    }

    .page-support__guide-image {
        height: 180px;
    }

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

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

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

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

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