/* FAQ Page */
.container {
    padding: 5rem 2rem; /* Padding for spacing */
}

/* FAQ Section Styling */
h1 {
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.faq-item h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
}

.faq-item a {
    color: var(--secondary);
    text-decoration: none;
}

.faq-item a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Introductory Text */
.text-muted {
    font-size: 18px;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .container {
        padding: 3rem 1rem;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    .faq-item h2 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    .text-muted {
        font-size: 16px;
    }
}
