/* FAQs Section */
.faqs-section {
    margin-top: 120px;
    padding: 40px 20px;
    background: #f9f9f9; /* Light gray background */
    border-radius: 10px; /* Smooth rounded corners */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Header Styling */
.faqs-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.faqs-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

/* FAQs Container */
.faqs-container {
    display: flex;
    flex-direction: column; /* Stack FAQ items vertically */
    gap: 20px; /* Add spacing between FAQ items */
}

/* Individual FAQ Item */
.faq-item {
    background: #ffffff; /* White card background */
    padding: 15px 20px;
    border-radius: 10px; /* Rounded corners for cards */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px); /* Hover effect: elevate card */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

/* FAQ Question */
.faq-question {
    font-size: 1.4rem;
    font-weight: bold;
    color: rgb(14, 50, 59); /* Blue for emphasis */
    margin-bottom: 10px;
}

/* FAQ Answer */
.faq-answer {
    font-size: 1.1rem;
    line-height: 1.6; /* Improve readability */
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faqs-section {
        padding: 20px 15px;
    }

    .faq-question {
        font-size: 1.2rem; /* Adjust question font size */
    }

    .faq-answer {
        font-size: 1rem; /* Adjust answer font size */
    }
}
