.home-faq {
    background: #f3f6f6;
    position: relative;
}

.home-faq .wpo-section-title {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.home-faq .wpo-section-title span {
    background: #ff7063;
    color: #fff;
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    display: inline-block;
}

.home-faq .wpo-section-title h2 {
    color: #1e3446;
    margin-top: 18px;
}

.home-faq .wpo-section-title p {
    color: #5a6b7d;
}

.home-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.home-faq-item {
    background: #fff;
    border: 1px solid #e4e8e8;
    border-left: 4px solid #ff7063;
    padding: 24px 24px 22px;
    height: 100%;
}

.home-faq-item__question {
    margin: 0 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e4e8e8;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #1e3446;
}

.home-faq-item__answer {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6b7d;
}

.home-faq-item__answer p {
    margin: 0;
}

.home-faq-item__answer a {
    color: #177265;
    font-weight: 600;
    text-decoration: none;
}

.home-faq-item__answer a:hover {
    color: #1e3446;
    text-decoration: underline;
}

.home-faq__cta {
    margin-top: 36px;
    text-align: center;
}

.home-faq__button {
    display: inline-block;
    background: #177265;
    color: #fff;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 0;
    border-radius: 0;
    transition: background 0.2s ease;
}

.home-faq__button:hover {
    background: #1e3446;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .home-faq .wpo-section-title {
        margin-bottom: 32px;
    }

    .home-faq__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-faq-item {
        padding: 20px 18px 18px;
    }

    .home-faq-item__question {
        font-size: 16px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .home-faq-item__answer {
        font-size: 14px;
        line-height: 1.65;
    }

    .home-faq__cta {
        margin-top: 28px;
    }
}
