/* FAQs Page Styles */
.faqs-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faqs-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: justify;
}

.faq-answer {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.faq-answer a {
    color: #1d6f63;
    font-weight: 600;
}

.faq-answer a:hover {
    color: #145148;
}

.faq-answer a:focus-visible {
    outline: 3px solid #4a9b8e;
    outline-offset: 2px;
}

/* Responsive Design for FAQs Page */
@media (max-width: 768px) {
    .faqs-card {
        padding: 30px 20px;
    }

    .faqs-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 17px;
    }

    .faq-answer {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faqs-card {
        padding: 25px 15px;
    }

    .faqs-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-item {
        margin-bottom: 25px;
    }
}

