/* FAQ Section Styling */
.faq-section {
    padding: 3rem 1rem;
    background-color: #f9fafb; /* Light gray */
    text-align: center;
}

.faq-section h1 {
    font-size: 2.5rem; /* Large headline */
    color: #333333; /* Dark gray */
    margin-bottom: 1rem;
    line-height: 1.3; /* Comfortable spacing for titles */
}

.faq-section p {
    font-size: 1.125rem; /* Slightly larger than base */
    color: #555555; /* Medium gray */
    margin-bottom: 2rem;
    line-height: 1.6; /* Comfortable spacing for body text */
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr; /* Always a single column */
    gap: 1.5rem; /* Space between items */
}

.faq-item {
    background-color: #ffffff; /* White cards */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 1.5rem;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    line-height: 1.5; /* Default line height for the card content */
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.25rem; /* Larger subheadings */
    color: #007bff; /* Bright blue */
    margin-bottom: 0.5rem;
    line-height: 1.4; /* Ensure spacing between heading lines */
}

.faq-item p {
    font-size: 1rem; /* Normal text size */
    color: #555555;
    line-height: 1.6; /* Comfortable spacing for body text */
}

.faq-item a {
    color: #007bff; /* Bright blue for links */
    text-decoration: none;
    font-weight: bold;
    line-height: 1.4; /* Ensure proper spacing for links */
}

.faq-item a:hover {
    text-decoration: underline;
    color: #0056b3; /* Darker blue on hover */
}
