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

/* General Styles for page-faq-account-issues */
.page-faq-account-issues {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-faq-account-issues__section-title {
    font-size: 2.5em;
    color: #0056b3;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-faq-account-issues__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

/* Hero Section */
.page-faq-account-issues__hero-section {
    position: relative;
    background: linear-gradient(135deg, #0056b3, #003d80); /* Darker blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Ensure sufficient height */
}

.page-faq-account-issues__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Slightly transparent to allow text readability */
    z-index: 0;
}

.page-faq-account-issues__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-faq-account-issues__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffd700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-account-issues__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

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

.page-faq-account-issues__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-faq-account-issues__btn--primary {
    background-color: #ffd700;
    color: #0056b3;
    border: 2px solid #ffd700;
}

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

.page-faq-account-issues__btn--secondary {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.page-faq-account-issues__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Intro Section */
.page-faq-account-issues__intro-section {
    padding: 60px 0;
    background-color: #fff;
}

/* FAQ Section */
.page-faq-account-issues__faq-section {
    padding: 60px 0;
    background-color: #f0f2f5;
}

.page-faq-account-issues__faq-category {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.page-faq-account-issues__category-title {
    font-size: 2em;
    color: #0056b3;
    margin-bottom: 30px;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 10px;
    text-align: center;
}

.page-faq-account-issues__faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.page-faq-account-issues__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-faq-account-issues__question {
    font-size: 1.3em;
    color: #003d80; /* Darker blue for question */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.page-faq-account-issues__question:hover {
    color: #0056b3;
}

.page-faq-account-issues__question::after {
    content: '+';
    font-size: 1.2em;
    color: #ffd700;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

.page-faq-account-issues__answer {
    font-size: 1em;
    color: #555;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq-account-issues__faq-item.active .page-faq-account-issues__answer {
    max-height: 500px; /* Adjust as needed for content */
    padding-top: 10px;
    padding-bottom: 10px;
}

.page-faq-account-issues__answer p {
    margin-bottom: 10px;
}

.page-faq-account-issues__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 10px;
    background-color: #0056b3;
    color: #fff;
    border: 1px solid #0056b3;
}

.page-faq-account-issues__btn--small:hover {
    background-color: #003d80;
    border-color: #003d80;
}

.page-faq-account-issues__category-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 30px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* CTA Section */
.page-faq-account-issues__cta-section {
    background: linear-gradient(135deg, #0056b3, #003d80);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq-account-issues__cta-title {
    font-size: 2.8em;
    color: #ffd700;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-faq-account-issues__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq-account-issues__btn--contact {
    background-color: #ffd700;
    color: #0056b3;
    border: 2px solid #ffd700;
    margin-bottom: 20px;
}

.page-faq-account-issues__btn--contact:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-faq-account-issues__cta-app-prompt {
    font-size: 1.1em;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.page-faq-account-issues__btn--app-download {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.page-faq-account-issues__btn--app-download:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-faq-account-issues__cta-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq-account-issues__hero-title {
        font-size: 2.8em;
    }
    .page-faq-account-issues__hero-subtitle {
        font-size: 1.1em;
    }
    .page-faq-account-issues__section-title {
        font-size: 2em;
    }
    .page-faq-account-issues__category-title {
        font-size: 1.8em;
    }
    .page-faq-account-issues__question {
        font-size: 1.2em;
    }
    .page-faq-account-issues__cta-title {
        font-size: 2.2em;
    }
    .page-faq-account-issues__cta-image {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .page-faq-account-issues__hero-section {
        padding: 80px 0;
    }
    .page-faq-account-issues__hero-title {
        font-size: 2.2em;
    }
    .page-faq-account-issues__hero-subtitle {
        font-size: 1em;
    }
    .page-faq-account-issues__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-faq-account-issues__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-faq-account-issues__section-title {
        font-size: 1.8em;
    }
    .page-faq-account-issues__category-title {
        font-size: 1.6em;
    }
    .page-faq-account-issues__question {
        font-size: 1.1em;
    }
    .page-faq-account-issues__answer {
        padding-left: 10px;
    }
    .page-faq-account-issues__cta-title {
        font-size: 1.8em;
    }
    .page-faq-account-issues__cta-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-faq-account-issues__hero-section {
        padding: 60px 0;
    }
    .page-faq-account-issues__hero-title {
        font-size: 1.8em;
    }
    .page-faq-account-issues__hero-subtitle {
        font-size: 0.9em;
    }
    .page-faq-account-issues__btn {
        width: 90%;
        padding: 10px 20px;
    }
    .page-faq-account-issues__section-title {
        font-size: 1.5em;
    }
    .page-faq-account-issues__category-title {
        font-size: 1.4em;
    }
    .page-faq-account-issues__question {
        font-size: 1em;
    }
    .page-faq-account-issues__cta-title {
        font-size: 1.6em;
    }
    .page-faq-account-issues__text-content {
        font-size: 1em;
    }
    .page-faq-account-issues__cta-description {
        font-size: 1em;
    }
}