:root {
    --primary-blue: #005a8b;
    --primary-yellow: #fdb913;
    --text-gray: #333333;
    --border-color: rgba(43, 51, 66, 0.2);
}

.header-top {
    background-color: var(--primary-yellow);
    padding: 8px 0;
}

.contact-info {
    color: var(--text-gray);
    font-size: 14px;
}

.contact-info i {
    margin-right: 10px;
}

.btn-account {
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-account:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* FAQ Section Headings (e.g. UNDERSTANDING THE PRODUCT, PAYOUTS & CLAIMS) */
.faq-container h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    border-left: 6px solid var(--primary-yellow);
    padding-left: 12px;
}

.faq-container h4:first-of-type {
    margin-top: 0;
}

@media (max-width: 576px) {
    .faq-container h4 {
        font-size: 18px;
        margin-top: 30px;
        padding-left: 10px;
    }
}

.section-title {
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: unset;
    margin-right: unset;
}

.section-title h3 {
    border-bottom: 3px solid #2B3342;
    font-weight: 600;
    font-size: 29px;
    padding: 0px;
    padding-bottom: 10px;
}

.faq-section {
    padding: 25px 0;
    max-width: 1252px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border: 1px solid var(--border-color);
    margin-bottom: 0;
}

.faq-card:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.faq-card:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.faq-card:not(:first-child) {
    border-top: 0;
}

.faq-header {
    padding: 25px 30px;
    padding-right: 60px;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-gray);
    position: relative;
}

.faq-header:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-header::after {
    content: '-';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: all 0.3s;
    color: white;
    background-color: #005A8B;
    width: 26px;
    height: 26px;
    line-height: 22px;
    text-align: center;
    border-radius: 3px;
}

.faq-header.collapsed::after {
    content: '+';
    background-color: transparent;
    color: #005A8B;
}

.faq-content {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 32px 27px;
    text-align: center;
}

.contact-card h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-gray);
    margin: 20px 0;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Ensure navbar uses your brand colors */
.navbar.bg-primary {
    background-color: var(--primary-blue) !important;
}

/* Make the toggler visible on primary background */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .1rem rgba(255, 255, 255, .25);
}

@media (max-width: 768px) {
    body.authenticated {
        padding-bottom: unset !important;
    }
}