.page-support {
    color: #ffffff; /* Light text for dark body background */
    background-color: var(--primary-color); /* Inherits from shared.css, which is #1A202C */
}

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

.page-support__container--reverse {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
    background-color: #1A202C; /* Ensure dark background */
}

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

.page-support__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-support__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.page-support__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text */
    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: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-support__button--tertiary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.5);
    padding: 10px 20px;
    font-size: 1em;
}

.page-support__button--tertiary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.page-support__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 25px;
    padding-top: 40px;
}

.page-support__section-intro {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__guides-section,
.page-support__assurance-section,
.page-support__cta-section {
    padding: 80px 0;
    background-color: #1A202C; /* Consistent dark background */
}

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

.page-support__faq-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter dark card */
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.page-support__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

.page-support__contact-content,
.page-support__assurance-content {
    flex: 1;
    padding: 0 20px;
}

.page-support__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-support__contact-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-support__contact-method {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-support__contact-description {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 15px;
}

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

.page-support__guide-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-support__guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-support__guide-title {
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-support__guide-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__guide-title a:hover {
    color: #e6c200;
}

.page-support__guide-description {
    font-size: 1em;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-support__assurance-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-support__assurance-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-support__assurance-heading {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-support__assurance-text {
    font-size: 1em;
    color: #e0e0e0;
    line-height: 1.6;
}

.page-support__image {
    display: block;
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: auto;
    margin-top: 40px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-support__image--left {
    order: 1;
    margin-right: 0;
}

.page-support__image--right {
    order: 2;
    margin-left: 0;
}

.page-support__cta-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #1A202C;
}

.page-support__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive Design */
@media (min-width: 769px) {
    .page-support__container {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .page-support__container--reverse {
        flex-direction: row-reverse;
    }

    .page-support__image {
        flex: 1;
        max-width: 50%;
        margin-top: 0;
    }

    .page-support__image--left {
        margin-right: 40px;
        order: 0;
    }

    .page-support__image--right {
        margin-left: 40px;
        order: 0;
    }
}

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

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

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

    .page-support__button {
        width: 100%;
    }

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

    .page-support__section-intro {
        font-size: 1em;
    }

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

    .page-support__image {
        max-width: 100%;
        height: auto;
    }

    /* Ensure content area images do not overflow */
    .page-support img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px; /* Ensure images are not too small */
    }
}