/* style/faq.css */
.page-faq {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #121212; /* Dark background for the page */
}

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

.page-faq__hero-section {
    background: linear-gradient(135deg, #1A237E, #333989); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-faq__hero-section > .page-faq__container {
    position: relative;
    z-index: 1;
}

.page-faq__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFB300; /* Amber gold for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__subtitle {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.page-faq__btn--primary {
    background-color: #FFB300; /* Amber gold */
    color: #1A237E; /* Deep blue text */
    border: 2px solid #FFB300;
}

.page-faq__btn--primary:hover {
    background-color: #e6a200;
    transform: translateY(-3px);
}

.page-faq__categories-section {
    padding: 60px 0;
    background-color: #1A237E; /* Deep blue background */
    color: #f0f0f0;
}

.page-faq__section-title {
    font-size: 2.5em;
    color: #FFB300; /* Amber gold for section titles */
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

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

.page-faq__category-card {
    background-color: #2a3174; /* Slightly lighter deep blue */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 179, 0, 0.3);
}

.page-faq__category-card:hover {
    transform: translateY(-10px);
    background-color: #3f4791;
}

.page-faq__category-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 179, 0, 0.7));
}

.page-faq__category-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #FFB300; /* Amber gold for category titles */
}

.page-faq__category-title a {
    color: #FFB300; /* Amber gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-faq__category-title a:hover {
    color: #fff;
    text-decoration: underline;
}

.page-faq__category-description {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #d0d0d0;
}

.page-faq__btn--secondary {
    background-color: transparent;
    color: #FFB300; /* Amber gold text */
    border: 2px solid #FFB300;
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-faq__btn--secondary:hover {
    background-color: #FFB300;
    color: #1A237E; /* Deep blue text on hover */
    transform: translateY(-3px);
}

.page-faq__cta-section {
    background-color: #121212; /* Dark background */
    color: #f0f0f0;
    padding: 80px 0;
    text-align: center;
}

.page-faq__cta-title {
    font-size: 2.5em;
    color: #FFB300; /* Amber gold */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-faq__cta-description {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #d0d0d0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-faq__main-title {
        font-size: 2.5em;
    }

    .page-faq__subtitle,
    .page-faq__cta-description {
        font-size: 1em;
    }

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

    .page-faq__category-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .page-faq__category-card {
        padding: 20px;
    }

    .page-faq__category-icon {
        width: 60px;
        height: 60px;
    }

    .page-faq__category-title {
        font-size: 1.5em;
    }
}