/* style/support.css */
.page-support {
    color: #000000; /* Dark text for light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-support__hero-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-support__hero-title {
    font-size: 3em;
    color: #000000;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

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

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

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

.page-support__btn--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
}

.page-support__btn--register:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.page-support__btn--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-support__btn--login:hover {
    background-color: #e0a53a;
    color: #000000;
}

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

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

.page-support__section-intro {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__faq-section {
    background-color: #FFFFFF;
    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: #f2f2f2;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    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.1);
}

.page-support__faq-question {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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 {
    font-size: 1em;
    color: #444444;
    display: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

.page-support__faq-answer.open {
    display: block;
    max-height: 200px; /* Adjust as needed for content */
}

.page-support__link-more {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
}

.page-support__link-more:hover {
    text-decoration: underline;
}

.page-support__contact-section {
    background-color: #f8f8f8;
    padding: 60px 0;
}

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

.page-support__contact-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__contact-icon {
    width: 200px; /* Minimum size for content images */
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
    object-fit: cover;
}

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

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

.page-support__btn--live-chat, .page-support__btn--email, .page-support__btn--faq {
    background-color: #FCBC45;
    color: #000000;
    border: none;
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
}

.page-support__btn--live-chat:hover, .page-support__btn--email:hover, .page-support__btn--faq:hover {
    background-color: #e0a53a;
}

.page-support__resources-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

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

.page-support__resource-card {
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__resource-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-support__resource-title {
    font-size: 1.4em;
    color: #000000;
    margin: 20px 20px 10px;
    font-weight: bold;
}

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

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

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

.page-support__cta-bottom-section {
    background-color: #000000;
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
}

.page-support__cta-bottom-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-support__btn--register-bottom {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    padding: 18px 40px;
    font-size: 1.3em;
    min-width: 250px;
}

.page-support__btn--register-bottom:hover {
    background-color: #e0a53a;
    color: #000000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__cta-bottom-title {
        font-size: 2.2em;
    }
    .page-support__faq-grid, .page-support__contact-methods, .page-support__resources-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        padding: 60px 15px;
    }
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__btn {
        width: 100%;
        min-width: unset;
    }
    .page-support__content-area {
        padding: 30px 15px;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-intro {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-support__faq-question {
        font-size: 1.3em;
    }
    .page-support__contact-method-title {
        font-size: 1.5em;
    }
    .page-support__resource-title {
        font-size: 1.2em;
    }
    .page-support__cta-bottom-title {
        font-size: 1.8em;
    }
    .page-support__cta-bottom-description {
        font-size: 1em;
    }
    .page-support__btn--register-bottom {
        padding: 15px 30px;
        font-size: 1.1em;
        width: 100%;
        min-width: unset;
    }
    /* Ensure images do not overflow on mobile */
    .page-support img {
        max-width: 100%;
        height: auto;
    }
    .page-support__contact-icon {
        width: 200px; /* Maintain minimum size */
        height: auto;
    }
    .page-support__resource-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 1.6em;
    }
    .page-support__section-title {
        font-size: 1.5em;
    }
    .page-support__cta-bottom-title {
        font-size: 1.6em;
    }
}