/* style/faq.css */

/* Base styles for the FAQ page */
.page-faq {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Hero Section */
.page-faq__hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Deep blue gradient */
    color: #fff;
    text-align: center;
    gap: 40px;
}

.page-faq__hero-content {
    max-width: 600px;
}

.page-faq__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for emphasis */
    line-height: 1.2;
}

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

.page-faq__hero-image-wrapper {
    flex-shrink: 0;
    max-width: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* Buttons */
.page-faq__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-faq__btn--primary {
    background-color: #FFCC00; /* Gold */
    color: #003366; /* Deep blue */
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-faq__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-faq__btn--secondary {
    background-color: #003366; /* Deep blue */
    color: #FFCC00; /* Gold */
    border: 2px solid #FFCC00;
}

.page-faq__btn--secondary:hover {
    background-color: #004080;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.page-faq__btn--cta {
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 35px;
    font-size: 1.2em;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.5);
}

.page-faq__btn--cta:hover {
    background-color: #e6b800;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.7);
}

/* Categories Section */
.page-faq__categories {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-faq__section-title {
    font-size: 2.5em;
    color: #003366; /* Deep blue */
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.page-faq__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Gold accent */
    border-radius: 2px;
}

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

.page-faq__category-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-faq__category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 51, 102, 0.15);
}

.page-faq__category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.page-faq__category-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-faq__category-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Call to Action Banner */
.page-faq__cta-banner {
    background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Deep blue gradient */
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.page-faq__cta-content {
    max-width: 700px;
}

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

.page-faq__cta-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-faq__cta-image-wrapper {
    flex-shrink: 0;
    max-width: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-faq__cta-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-faq__hero-title {
        font-size: 2.8em;
    }
    .page-faq__section-title {
        font-size: 2.2em;
    }
    .page-faq__cta-title {
        font-size: 2.4em;
    }
    .page-faq__hero, .page-faq__cta-banner {
        flex-direction: column;
        text-align: center;
    }
    .page-faq__hero-image-wrapper, .page-faq__cta-image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-faq__hero {
        padding: 40px 15px;
    }
    .page-faq__hero-title {
        font-size: 2.2em;
    }
    .page-faq__hero-description {
        font-size: 1em;
    }
    .page-faq__categories {
        padding: 60px 15px;
    }
    .page-faq__section-title {
        font-size: 2em;
    }
    .page-faq__category-grid {
        grid-template-columns: 1fr;
    }
    .page-faq__category-item {
        padding: 25px;
    }
    .page-faq__cta-banner {
        padding: 50px 15px;
    }
    .page-faq__cta-title {
        font-size: 2em;
    }
    .page-faq__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-faq__hero-title {
        font-size: 1.8em;
    }
    .page-faq__section-title {
        font-size: 1.8em;
    }
    .page-faq__cta-title {
        font-size: 1.8em;
    }
    .page-faq__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-faq__btn--cta {
        padding: 12px 25px;
        font-size: 1em;
    }
}