body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f5f7fa;
    color: #343a40;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background-color: #0d4a75;
    color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.faq-header h1 {
    font-size: 2.5rem;
}

.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-card-header {
    background-color: #0d4a75;
    color: #fff;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-card-body {
    display: none;
    padding: 20px;
    background-color: #f9fbfd;
    color: #495057;
}

.faq-card-header:hover {
    background-color: #1f6f8b;
}

.faq-card-header i {
    transition: transform 0.3s ease;
}

.faq-card-header.collapsed i {
    transform: rotate(180deg);
}

/* Footer styling is defined globally in style.css; no overrides here to maintain consistency */

@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 2rem;
    }
}

/* Benefit Tile Styles */
/* Benefit Tile Styles */
.benefit-tile {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
}

/* Hover Effects */
.benefit-tile:hover {
    background-color: #0d4a75;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* Heading in Tile */
.benefit-tile h4 {
    margin-bottom: 10px;
    color: #0d4a75;
    font-weight: 600;
    font-size: 1.25rem;
}

/* Paragraph in Tile */
.benefit-tile p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Hover State for Text */
.benefit-tile:hover h4,
    .benefit-tile:hover p {
    color: #fff;
}
