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

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

.page-faq__hero {
    background: linear-gradient(135deg, #0A192F, #1e3a60);
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

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

.page-faq__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__hero-description {
    font-size: 1.2em;
    color: #c0c0c0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-faq__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color */
    color: #0A192F;
    padding: 15px 35px;
    border-radius: 5px;
    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(255, 215, 0, 0.4);
}

.page-faq__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-faq__hero-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
}

.page-faq__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.page-faq__accordion-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-faq__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-faq__accordion {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #1e3a60;
}

.page-faq__accordion-item {
    border-bottom: 1px solid #1e3a60;
}

.page-faq__accordion-item:last-child {
    border-bottom: none;
}

.page-faq__accordion-header {
    background-color: #1a2c4a;
    color: #FFD700;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: 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;
}

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

.page-faq__accordion-h3 {
    margin: 0;
    font-size: 1.3em;
    color: #FFD700;
}

.page-faq__accordion-icon {
    font-size: 1.8em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-faq__accordion-header[aria-expanded="true"] .page-faq__accordion-icon {
    transform: rotate(45deg);
}

.page-faq__accordion-content {
    background-color: #0F203A;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq__accordion-content p {
    padding: 20px 0;
    margin: 0;
    line-height: 1.8;
    font-size: 1.1em;
    color: #c0c0c0;
}

.page-faq__accordion-content a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-faq__accordion-content a:hover {
    text-decoration: underline;
}

.page-faq__content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__link-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin-top: 15px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-faq__link-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-faq__related-content {
    padding: 60px 0;
    background-color: #0F203A;
}

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

.page-faq__card {
    background-color: #1a2c4a;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #f5e6d0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

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

.page-faq__card-title {
    font-size: 1.4em;
    color: #FFD700;
    padding: 15px 20px 10px;
    margin: 0;
}

.page-faq__card-description {
    font-size: 1em;
    color: #c0c0c0;
    padding: 0 20px 20px;
    line-height: 1.6;
}

.page-faq__cta-bottom {
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
}

.page-faq__cta-bottom-content {
    background-color: #1a2c4a;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.page-faq__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-faq__cta-description {
    font-size: 1.3em;
    color: #c0c0c0;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.page-faq__cta-button {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq__cta-button--primary {
    background-color: #FFD700;
    color: #0A192F;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-faq__cta-button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-faq__cta-button--secondary {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-faq__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq__hero-title {
        font-size: 2.8em;
    }
    .page-faq__section-title {
        font-size: 2em;
    }
    .page-faq__accordion-header {
        font-size: 1.2em;
    }
    .page-faq__accordion-h3 {
        font-size: 1.2em;
    }
    .page-faq__card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-faq__cta-title {
        font-size: 2.2em;
    }
    .page-faq__cta-description {
        font-size: 1.1em;
    }
    .page-faq__cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-faq__hero {
        padding: 60px 0;
    }
    .page-faq__hero-title {
        font-size: 2.2em;
    }
    .page-faq__hero-description {
        font-size: 1em;
    }
    .page-faq__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-faq__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-faq__accordion-header {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-faq__accordion-h3 {
        font-size: 1.1em;
    }
    .page-faq__accordion-content p {
        padding: 15px 0;
        font-size: 0.95em;
    }
    .page-faq__cta-bottom-content {
        padding: 40px 20px;
    }
    .page-faq__cta-title {
        font-size: 1.8em;
    }
    .page-faq__cta-description {
        font-size: 1em;
    }
    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-faq__cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-faq__hero {
        padding: 40px 0;
    }
    .page-faq__hero-title {
        font-size: 1.8em;
    }
    .page-faq__hero-description {
        font-size: 0.9em;
    }
    .page-faq__hero-image-wrapper {
        margin-top: 20px;
    }
    .page-faq__section-title {
        font-size: 1.5em;
    }
    .page-faq__accordion-header {
        font-size: 1em;
    }
    .page-faq__accordion-h3 {
        font-size: 1em;
    }
    .page-faq__accordion-icon {
        font-size: 1.5em;
    }
    .page-faq__card-grid {
        grid-template-columns: 1fr;
    }
    .page-faq__cta-title {
        font-size: 1.5em;
    }
    .page-faq__cta-description {
        font-size: 0.9em;
    }
}