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

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

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

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

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

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

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

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

.page-support__button--primary {
    background-color: #FFFFFF; /* Register button color */
    color: #000000; /* Black text */
    border: 2px solid #FFFFFF;
}

.page-support__button--primary:hover {
    background-color: #FCBC45; /* Login button color on hover */
    color: #FFFFFF;
    border-color: #FCBC45;
}

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

.page-support__button--secondary:hover {
    background-color: #FFFFFF; /* White on hover */
    color: #000000;
    border-color: #FFFFFF;
}

.page-support__faq-section {
    background-color: #FFFFFF; /* White background */
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-support__section-title {
    font-size: 2.8em;
    color: #000000; /* Black text */
    text-align: center;
    margin-bottom: 20px;
}

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

.page-support__faq-list {
    margin-top: 40px;
}

.page-support__faq-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #eee;
}

.page-support__faq-question {
    font-size: 1.3em;
    padding: 20px 25px;
    background-color: #000000; /* Black background for question */
    color: #FFFFFF; /* White text */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-support__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #FFFFFF;
    color: #333333;
}

.page-support__faq-answer p {
    padding: 20px 0;
    margin: 0;
    line-height: 1.6;
}

.page-support__faq-answer a {
    color: #FCBC45; /* Highlight links */
    text-decoration: none;
}

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

.page-support__faq-image {
    display: block;
    margin: 60px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 800px;
    height: 600px;
    object-fit: cover;
}

.page-support__contact-section {
    background-color: #000000; /* Main color */
    color: #FFFFFF; /* White text */
    padding: 80px 20px;
    text-align: center;
}

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

.page-support__contact-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__contact-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-support__contact-icon {
    width: 400px;
    height: 300px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: none; /* Ensure no color filters */
}

.page-support__contact-card-title {
    font-size: 1.8em;
    color: #FCBC45; /* Login button color */
    margin-bottom: 10px;
}

.page-support__contact-card-description {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 25px;
}

.page-support__button--text {
    color: #FFFFFF; /* White text */
    border: 2px solid #FFFFFF;
    padding: 10px 25px;
    font-size: 1em;
    background-color: transparent;
}

.page-support__button--text:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.page-support__cta-banner {
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Black text */
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 80px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.page-support__cta-title {
    font-size: 2.5em;
    margin-bottom: 15px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 2.8em;
    }
    .page-support__section-title {
        font-size: 2.4em;
    }
    .page-support__faq-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding-bottom: 60px;
    }
    .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: 100%;
        max-width: 300px;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__section-intro {
        font-size: 0.95em;
    }
    .page-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-support__faq-answer p {
        padding: 15px 0;
    }
    .page-support__contact-methods {
        grid-template-columns: 1fr;
    }
    .page-support__contact-icon {
        width: 250px;
        height: 187px;
    }
    .page-support__cta-title {
        font-size: 2em;
    }
    .page-support__cta-description {
        font-size: 1em;
    }
    /* 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__section-title {
        font-size: 1.8em;
    }
    .page-support__faq-question {
        font-size: 1em;
    }
    .page-support__contact-card-title {
        font-size: 1.5em;
    }
    .page-support__cta-title {
        font-size: 1.8em;
    }
}