/* style/faq.css */
.page-faq {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f5f5f5; /* Light text for dark background */
    background-color: #0A2342; /* Main background color */
}

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

/* Hero Section */
.page-faq__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A2342 0%, #1a3c61 100%); /* Dark blue gradient */
    color: #f5f5f5;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #E6B325;
}

.page-faq__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-faq__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #E6B325; /* Accent color for title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #cccccc;
}

.page-faq__hero-btn {
    display: inline-block;
    background-color: #E6B325; /* Accent color for button */
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__hero-btn:hover {
    background-color: #f0c54a; /* Lighter accent on hover */
    transform: translateY(-3px);
}

.page-faq__hero-image-wrapper {
    position: absolute;
    bottom: -50px;
    right: -50px;
    opacity: 0.1;
    z-index: 0;
    max-width: 400px;
}

.page-faq__hero-image {
    width: 100%;
    height: auto;
}

/* Accordion Section */
.page-faq__accordion-section {
    padding: 60px 0;
    background-color: #1a3c61; /* Slightly lighter dark blue */
}

.page-faq__section-title {
    font-size: 2.5em;
    color: #E6B325;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-faq__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-faq__accordion-item {
    background-color: #0A2342;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-faq__accordion-header {
    background-color: #1a3c61; /* Darker blue for header */
    color: #f5f5f5;
    padding: 20px 30px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(230, 179, 37, 0.3);
}

.page-faq__accordion-header:hover {
    background-color: #2b547d;
}

.page-faq__accordion-header h3 {
    margin: 0;
    color: #f5f5f5;
}

.page-faq__accordion-icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
    color: #E6B325;
}

.page-faq__accordion-header.active .page-faq__accordion-icon {
    transform: rotate(45deg);
}

.page-faq__accordion-body {
    padding: 0 30px;
    background-color: #0A2342;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #cccccc;
}

.page-faq__accordion-body.active {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 30px;
}

.page-faq__accordion-body p {
    margin-bottom: 15px;
}

.page-faq__accordion-link {
    display: inline-block;
    background-color: #E6B325;
    color: #0A2342;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.page-faq__accordion-link:hover {
    background-color: #f0c54a;
}

.page-faq__app-image, .page-faq__promotion-image, .page-faq__support-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Call to Action Section */
.page-faq__cta-section {
    background: linear-gradient(90deg, #E6B325 0%, #f0c54a 100%); /* Accent color gradient */
    padding: 80px 20px;
    text-align: center;
    color: #0A2342;
}

.page-faq__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0A2342;
    font-weight: bold;
}

.page-faq__cta-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #2c2c2c;
}

.page-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-faq__cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__cta-btn--primary {
    background-color: #0A2342;
    color: #E6B325;
    border: 2px solid #0A2342;
}

.page-faq__cta-btn--primary:hover {
    background-color: #1a3c61;
    color: #f0c54a;
    transform: translateY(-3px);
}

.page-faq__cta-btn--secondary {
    background-color: transparent;
    color: #0A2342;
    border: 2px solid #0A2342;
}

.page-faq__cta-btn--secondary:hover {
    background-color: #0A2342;
    color: #E6B325;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-faq__hero {
        padding: 60px 20px;
    }

    .page-faq__hero-title {
        font-size: 2.5em;
    }

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

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

    .page-faq__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-faq__accordion-body.active {
        padding: 15px 20px;
    }

    .page-faq__cta-title {
        font-size: 2.2em;
    }

    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-faq__hero-title {
        font-size: 2em;
    }

    .page-faq__hero-description {
        font-size: 0.9em;
    }

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

    .page-faq__section-title {
        font-size: 1.8em;
    }

    .page-faq__accordion-header {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-faq__accordion-icon {
        font-size: 1.2em;
    }

    .page-faq__accordion-body.active {
        padding: 12px 15px;
    }

    .page-faq__cta-title {
        font-size: 1.8em;
    }

    .page-faq__cta-description {
        font-size: 0.9em;
    }
}