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

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

.page-support__hero-section {
    background-color: #000000; /* Dark background for hero content area */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensure hero section has a minimum height */
}

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

.page-support__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-support__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FCBC45; /* Gold accent */
}

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

.page-support__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    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.3s ease;
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
    cursor: pointer;
}

.page-support__button--contact {
    background-color: #FCBC45; /* Login color for contact */
    color: #000000;
}

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

.page-support__button--register {
    background-color: #000000; /* Main color for register */
    color: #FFFFFF; /* Register text color */
    border: 2px solid #FCBC45;
}

.page-support__button--register:hover {
    background-color: #FCBC45;
    color: #000000;
    transform: translateY(-2px);
}

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

.page-support__section-subtitle {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: #333333;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-support__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center; /* Align image vertically */
}

.page-support__faq-item {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 15px;
}

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

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

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

.page-support__faq-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Contact Section */
.page-support__contact-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.page-support__contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.page-support__contact-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.page-support__contact-card-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-support__contact-card-description {
    color: #555555;
    margin-bottom: 25px;
}

.page-support__button--livechat {
    background-color: #FCBC45;
    color: #000000;
}

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

.page-support__button--email {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #FCBC45;
}

.page-support__button--email:hover {
    background-color: #FCBC45;
    color: #000000;
    transform: translateY(-2px);
}

.page-support__button--helpcenter {
    background-color: #333333;
    color: #FFFFFF;
}

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

.page-support__contact-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Account Section */
.page-support__account-section {
    padding: 60px 0;
    background-color: #000000; /* Dark background */
    color: #FFFFFF;
}

.page-support__account-section .page-support__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-support__account-content {
    flex: 1;
    min-width: 300px;
}

.page-support__account-section .page-support__section-title {
    color: #FCBC45;
    text-align: left;
}

.page-support__account-section .page-support__section-subtitle {
    color: #f0f0f0;
    text-align: left;
    margin-bottom: 30px;
}

.page-support__account-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.page-support__account-list-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
}

.page-support__account-list-item::before {
    content: '✔️'; /* Checkmark icon */
    margin-right: 15px;
    color: #FCBC45;
    font-size: 1.2em;
}

.page-support__button--assistance {
    background-color: #FCBC45;
    color: #000000;
}

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

.page-support__account-image {
    flex: 1;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-support__section-subtitle {
        font-size: 0.9em;
    }

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

    .page-support__button {
        width: 100%;
        min-width: unset;
    }

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

    .page-support__contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .page-support__contact-card {
        max-width: 100%;
    }

    .page-support__account-section .page-support__container {
        flex-direction: column;
        text-align: center;
    }

    .page-support__account-section .page-support__section-title,
    .page-support__account-section .page-support__section-subtitle {
        text-align: center;
    }

    .page-support__account-list-item {
        justify-content: center;
    }

    /* Mobile image constraints for content area images */
    .page-support__faq-image,
    .page-support__contact-image,
    .page-support__account-image {
        max-width: 100%;
        height: auto;
    }
}