.dt-accordion {
    max-width: 100%;
    margin: 0 auto;
}
.dt-accordion__heading {
    margin: 0 0 24px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}
.dt-accordion__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dt-accordion__item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}
.dt-accordion__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    background: #fff;
    color: #0b2a4a;
    list-style: none;
    user-select: none;
    transition: background .15s ease;
}
.dt-accordion__title::-webkit-details-marker {
    display: none;
}
.dt-accordion__title:hover {
    background: #eef6ff;
    color: #0b2a4a;
}
.dt-accordion__title::after {
    content: '+';
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
    color: #0b2a4a;
    transition: transform .2s ease;
}
.dt-accordion__title:hover::after {
    color: #0b2a4a;
}
.dt-accordion__item[open] .dt-accordion__title::after {
    transform: rotate(45deg);
}
.dt-accordion__body {
    padding: 0 22px 20px;
    font-size: 16px;
    line-height: 1.65;
    color: #444;
}
.dt-accordion__body p {
    margin: 0 0 12px;
}
.dt-accordion__body p:last-child {
    margin-bottom: 0;
}

/* Отступ сверху для standalone-блока (FAQ перед формой), чтобы не лип к контенту выше.
   Ширину задаёт .page__container (обёртка в questions-2.php) — как у остального контента. */
.dt-accordion--spaced {
    margin-top: 6.25rem;
}
