/* style/faq.css */

/* General styling for the FAQ page content */
.page-faq {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark text for readability on light backgrounds */
    line-height: 1.6;
    background-color: #f9f9f9; /* Light background */
}

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

/* Hero Section */
.page-faq__hero {
    background: linear-gradient(135deg, #0D47A1, #2a6ecf); /* Dark blue to slightly lighter blue */
    color: #ffffff; /* White text on dark background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-faq__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px; /* Adjust size as needed */
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

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

.page-faq__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-faq__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

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

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

.page-faq__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0D47A1; /* Dark blue text on gold */
}

.page-faq__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-faq__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-faq__btn--secondary:hover {
    background-color: #FFD700; /* Gold background */
    color: #0D47A1; /* Dark blue text on gold */
    transform: translateY(-2px);
}

.page-faq__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
    background-color: #0D47A1;
    color: #ffffff;
}

.page-faq__btn--small:hover {
    background-color: #1a5cae;
    transform: translateY(-1px);
}

.page-faq__btn--large {
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 10px;
    background-color: #FFD700; /* Gold */
    color: #0D47A1; /* Dark blue text on gold */
}

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

/* Content Section */
.page-faq__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-faq__section-heading {
    font-size: 2.5em;
    color: #0D47A1; /* Dark blue heading */
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

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

.page-faq__faq-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq__faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-faq__faq-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-faq__item-title {
    font-size: 1.4em;
    color: #0D47A1; /* Dark blue title */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-faq__item-description {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 25px;
    flex-grow: 1; /* Allows description to take available space */
}

/* Text highlighting */
.page-faq .text-highlight {
    color: #FFD700; /* Gold for highlights */
    font-weight: bold;
}

/* Contact Section */
.page-faq__contact-section {
    background-color: #0D47A1; /* Dark blue background */
    color: #ffffff; /* White text */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq__contact-section .page-faq__section-heading {
    color: #FFD700; /* Gold heading */
}

.page-faq__contact-section .page-faq__description {
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-faq__contact-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; /* Adjust size as needed */
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

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

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

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

    .page-faq__cta-group {
        flex-direction: column;
    }

    .page-faq__hero-image,
    .page-faq__contact-image {
        width: 200px; /* Smaller on mobile */
    }
}

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

    .page-faq__description {
        font-size: 1em;
    }

    .page-faq__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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