.faq-section {
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-header {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color:#023784;
    margin-bottom: 20px;
}

.faq {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    color: #333;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 18px;
    position: absolute;
    right: 20px;
    color: #666;
}

.faq-answer {
    display: none;
    padding: 10px;
    font-size: 16px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .faq-section {
        padding: 15px;
        box-shadow: none;
    }
    .faq-question {
        font-size: 16px;
    }
    .faq-answer {
        font-size: 14px;
    }
}
/* Why choose us section */
.why-choose-us-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.why-choose-us-header {
    font-size: 24px;
    font-weight: bold;
    color: #023784;
    text-align: center;
    margin-bottom: 20px;
}

.why-choose-us-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.reason-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    color: #333;
}

.reason-item::before {
    content: "»";
    font-size: 20px;
    color: #0073e6;
    margin-right: 10px;
    line-height: 1.2;
}

.reason-item:last-child {
    border-bottom: none;
}

.highlight {
    font-weight: bold;
    color: #0073e6;
    margin-top: 20px;
    text-align: center;
}

.bottom-text {
    font-size: 16px;
    color: #555;
    margin-top: 20px;
    line-height: 1.6;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .why-choose-us-section {
        padding: 15px;
        box-shadow: none;
    }

    .why-choose-us-header {
        font-size: 22px;
    }

    .why-choose-us-text, .bottom-text {
        font-size: 14px;
    }

    .reason-item {
        font-size: 14px;
    }

    .highlight {
        font-size: 16px;
    }
}