/* style/faq-account-issues.css */

/* Base styles for the page */
.page-faq-account-issues {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default dark text for light body background */
    background-color: #ffffff;
    line-height: 1.6;
}

/* Hero Section */
.page-faq-account-issues__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #26A9E0, #4CAF50);
    color: #ffffff;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px);
    overflow: hidden;
}

.page-faq-account-issues__hero-content {
    max-width: 900px;
    z-index: 1;
    margin-bottom: 30px;
}

.page-faq-account-issues__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq-account-issues__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-faq-account-issues__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-faq-account-issues__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
    z-index: 0;
}

.page-faq-account-issues__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
}

/* Content Area */
.page-faq-account-issues__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-faq-account-issues__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.page-faq-account-issues__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #EA7C07;
    border-radius: 2px;
}

.page-faq-account-issues__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555555;
}

/* FAQ List */
.page-faq-account-issues__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-faq-account-issues__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-faq-account-issues__faq-item.active {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-faq-account-issues__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
}

.page-faq-account-issues__faq-question:hover {
    background-color: #e5e5e5;
}

.page-faq-account-issues__faq-question h3 {
    margin: 0;
    color: #26A9E0;
    font-size: 1.2em;
}

.page-faq-account-issues__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #EA7C07;
}

.page-faq-account-issues__faq-item.active .page-faq-account-issues__faq-toggle {
    transform: rotate(45deg);
}

.page-faq-account-issues__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #ffffff;
}

.page-faq-account-issues__faq-item.active .page-faq-account-issues__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to accommodate content */
    padding: 20px 25px;
}

.page-faq-account-issues__faq-answer p {
    margin-bottom: 15px;
    color: #555555;
}

.page-faq-account-issues__faq-answer ul,
.page-faq-account-issues__faq-answer ol {
    margin-left: 20px;
    margin-bottom: 15px;
    color: #555555;
}

.page-faq-account-issues__faq-answer li {
    margin-bottom: 8px;
}

.page-faq-account-issues__image-wrapper {
    margin-top: 20px;
    text-align: center;
}

.page-faq-account-issues__content-image {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-faq-account-issues__cta-section {
    background-color: #26A9E0;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
    margin-top: 40px;
    border-radius: 8px;
}

.page-faq-account-issues__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-faq-account-issues__cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

/* Buttons */
.page-faq-account-issues__btn-primary,
.page-faq-account-issues__btn-secondary,
.page-faq-account-issues__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-faq-account-issues__btn-primary {
    background-color: #EA7C07;
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-faq-account-issues__btn-primary:hover {
    background-color: #d46b00;
    border-color: #d46b00;
    transform: translateY(-3px);
}

.page-faq-account-issues__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-faq-account-issues__btn-secondary:hover {
    background-color: #e0f7fa;
    color: #1a7a9e;
    border-color: #1a7a9e;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-faq-account-issues__hero-title {
        font-size: 2.8em;
    }

    .page-faq-account-issues__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-faq-account-issues__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-faq-account-issues__hero-title {
        font-size: 2.2em;
    }

    .page-faq-account-issues__hero-description {
        font-size: 1em;
    }

    .page-faq-account-issues__hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .page-faq-account-issues__btn-primary,
    .page-faq-account-issues__btn-secondary,
    .page-faq-account-issues__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-faq-account-issues__content-area {
        padding: 40px 15px;
    }

    .page-faq-account-issues__section-title {
        font-size: 1.8em;
    }

    .page-faq-account-issues__section-intro {
        font-size: 0.95em;
    }

    .page-faq-account-issues__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-faq-account-issues__faq-question h3 {
        font-size: 1.1em;
    }

    .page-faq-account-issues__faq-answer {
        padding: 15px 20px;
    }

    .page-faq-account-issues__cta-section {
        padding: 40px 15px;
    }

    .page-faq-account-issues__cta-title {
        font-size: 2em;
    }

    .page-faq-account-issues__cta-description {
        font-size: 1em;
    }

    /* Mobile image responsiveness */
    .page-faq-account-issues img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-faq-account-issues__hero-image-wrapper,
    .page-faq-account-issues__image-wrapper,
    .page-faq-account-issues__content-area,
    .page-faq-account-issues__cta-section,
    .page-faq-account-issues__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Ensure no overflow */
    }

    .page-faq-account-issues__hero-content {
        padding-left: 0;
        padding-right: 0;
    }
}

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

    .page-faq-account-issues__section-title {
        font-size: 1.6em;
    }

    .page-faq-account-issues__cta-title {
        font-size: 1.8em;
    }
}