.faq-section {
    margin: 50px auto 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    margin: 0 -10px;
}

.faq-column {
    padding: 0 10px;
}

.faq-item {
    background: #EAEFFE;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    margin-bottom: 20px;
}

.faq-item .faq-question {
    display: flex;
    align-items: center;
}

.faq-item.active .faq-question {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 0 50px 0 0;
    font-size: 15px;
    line-height: 1.4;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    color: #1B1B1B;
}

/* Plus/Minus icon */
.faq-question::before,
.faq-question::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 14px;
    height: 2px;
    background: #1B1B1B;
    transform: translateY(-50%);
    transition: transform 0.35s ease;
}

.faq-question::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    font-weight: 500;
}

.faq-answer a {
    color: #2A63F5;
    transition: all 0.3s ease-in-out;
}

.faq-answer a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer * {
    line-height: 1.6;
    font-size: 16px;
    font-style: normal;
}

.faq-answer strong {
    color: #1B1B1B;
}

.faq-answer ul:not(:last-child),
.faq-answer ol:not(:last-child) {
    margin-bottom: 15px;
}

.faq-answer ul li {
    padding-left: 20px;
    position: relative;
}

.faq-answer ol li {
    list-style-type: auto;
    margin-left: 20px;
}

.faq-answer ul li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #2A63F5;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 11px;
}

.faq-answer li {
    color: #5A6B7A;
}

.faq-item .faq-question .icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    max-width: 30px;
}

/* Responsive */
@media (min-width: 768px) {
    .faq-item:not(:last-child) {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 15px;
    }

    .faq-item .faq-question {
        align-items: flex-start;
    }
}