.hero {
    height: 600px;
    background: url('../imgs/faqssection.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero h1 {
    position: relative;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    z-index: 2;
}

.faq-section {
    padding: 60px 20px;
    background: #ffffff;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title h2 {
    font-weight: 700;
    color: #0d6efd;
}

.accordion-item {
    border: 1px solid #e6e6e6;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: #f8fbff;
    color: #0d6efd;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #0d6efd;
    color: #fff;
}

.accordion-body {
    background: #ffffff;
    color: #333;
}

.two-col {
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    .two-col {
        flex-direction: column;
    }
}