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

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

.page-faq-account-issues-hero {
    background: linear-gradient(135deg, #0A2463, #3B5998);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-faq-account-issues-hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
}

.page-faq-account-issues-hero p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq-account-issues-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-faq-account-issues-btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Deep Blue */
    border: 2px solid #FFD700;
}

.page-faq-account-issues-btn-primary:hover {
    background-color: #e6c200; /* Darker Gold */
    transform: translateY(-2px);
}

.page-faq-account-issues-btn-secondary {
    background-color: #0A2463; /* Deep Blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-faq-account-issues-btn-secondary:hover {
    background-color: #1a3a7a; /* Lighter Deep Blue */
    transform: translateY(-2px);
}

.page-faq-account-issues-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    color: #333;
}

.page-faq-account-issues-section:nth-of-type(even) {
    background-color: #f2f2f2;
}

.page-faq-account-issues-section h2 {
    font-size: 2.5em;
    color: #0A2463; /* Deep Blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-faq-account-issues-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-faq-account-issues-section p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.page-faq-account-issues-faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq-account-issues-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-faq-account-issues-faq-item h3 {
    font-size: 1.6em;
    color: #0A2463; /* Deep Blue */
    margin-bottom: 15px;
    cursor: pointer; /* Indicate clickable for accordion */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-faq-account-issues-faq-item h3::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-faq-account-issues-faq-item h3.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-faq-account-issues-faq-item p {
    display: none; /* Hidden by default for accordion */
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.page-faq-account-issues-faq-item p.show {
    display: block;
}

.page-faq-account-issues-img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-faq-account-issues-cta-block {
    background-color: #0A2463;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-faq-account-issues-cta-block p {
    font-size: 1.4em;
    margin-bottom: 25px;
    color: #FFD700;
    font-weight: bold;
}

.page-faq-account-issues-download-app {
    background-color: #0A2463;
    color: #fff;
    padding: 80px 0;
}

.page-faq-account-issues-download-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-faq-account-issues-download-text {
    flex: 1;
}

.page-faq-account-issues-download-text h2 {
    color: #FFD700; /* Gold */
    font-size: 2.8em;
    margin-bottom: 20px;
    text-align: left;
}

.page-faq-account-issues-download-text h2::after {
    background-color: #FFD700;
    left: 0;
    transform: translateX(0);
}

.page-faq-account-issues-download-text p {
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-faq-account-issues-download-image {
    flex: 1;
    text-align: center;
}

.page-faq-account-issues-download-image img {
    max-height: 400px;
    object-fit: contain;
}

.page-faq-account-issues-conclusion {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.page-faq-account-issues-conclusion p {
    font-size: 1.3em;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq-account-issues-copyright {
    background-color: #0A2463;
    color: #a0a0a0;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq-account-issues-hero h1 {
        font-size: 2.5em;
    }

    .page-faq-account-issues-section h2 {
        font-size: 2em;
    }

    .page-faq-account-issues-faq-item h3 {
        font-size: 1.4em;
    }

    .page-faq-account-issues-download-flex {
        flex-direction: column;
        text-align: center;
    }

    .page-faq-account-issues-download-text h2 {
        text-align: center;
    }

    .page-faq-account-issues-download-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-faq-account-issues-hero {
        padding: 60px 0;
    }

    .page-faq-account-issues-hero h1 {
        font-size: 2em;
    }

    .page-faq-account-issues-hero p {
        font-size: 1em;
    }

    .page-faq-account-issues-section {
        padding: 40px 0;
    }

    .page-faq-account-issues-section h2 {
        font-size: 1.8em;
    }

    .page-faq-account-issues-faq-item h3 {
        font-size: 1.2em;
    }

    .page-faq-account-issues-faq-item p {
        font-size: 0.95em;
    }

    .page-faq-account-issues-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-faq-account-issues-download-app {
        padding: 60px 0;
    }

    .page-faq-account-issues-download-text h2 {
        font-size: 2.2em;
    }

    .page-faq-account-issues-download-image img {
        max-height: 300px;
    }

    .page-faq-account-issues-cta-block {
        padding: 30px;
    }

    .page-faq-account-issues-cta-block p {
        font-size: 1.2em;
    }

    .page-faq-account-issues-conclusion p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-faq-account-issues-container {
        padding: 0 15px;
    }

    .page-faq-account-issues-hero h1 {
        font-size: 1.8em;
    }

    .page-faq-account-issues-section h2 {
        font-size: 1.5em;
        margin-bottom: 30px;
    }

    .page-faq-account-issues-faq-item h3 {
        font-size: 1.1em;
    }

    .page-faq-account-issues-faq-item {
        padding: 20px;
    }

    .page-faq-account-issues-download-text h2 {
        font-size: 1.8em;
    }
}