/* =========================================
   FAQ SECTION STYLES (Updated height)
   ========================================= */

   .dp-faq-section {
    padding: 120px 0;
    background-color: #ffffff;
    font-family: 'PP Neue Montreal', sans-serif;
    color: #121212;
}

.dp-faq-section .dp-container-fluid {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Grid Layout --- */
.dp-faq-grid {
    display: grid;
    grid-template-columns: 35% 60%;
    gap: 5%;
}

/* --- Left Column --- */
.dp-faq-left {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.dp-heading-lg {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 40px 0;
    letter-spacing: -0.02em;
}

.dp-btn-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    color: #121212;
    transition: all 0.3s ease;
}

.dp-btn-tertiary:hover {
    border-color: #121212;
    background-color: #f9f9f9;
}

/* --- Right Column (Accordion) --- */
.dp-accordion {
    width: 100%;
    border-top: 1px solid #e0e0e0;
}

.dp-accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.dp-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* ИЗМЕНЕНО: Уменьшили высоту в 2 раза (было 35px) */
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.dp-accordion-header:hover .dp-accordion-title {
    opacity: 0.7;
}

.dp-accordion-title {
    font-size: 22px;
    font-weight: 400;
    color: #121212;
    padding-right: 20px;
}

/* Иконка Плюс (Кружок) */
.dp-icon-plus {
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Линии плюса */
.dp-icon-plus::before,
.dp-icon-plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #121212;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.dp-icon-plus::before {
    width: 10px;
    height: 1px;
}

.dp-icon-plus::after {
    width: 1px;
    height: 10px;
}

/* Активное состояние */
.dp-accordion-header[aria-expanded="true"] .dp-icon-plus {
    transform: rotate(45deg);
    border-color: #121212;
}

/* Контент (Скрытый) */
.dp-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.dp-inner-content {
    padding-bottom: 35px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.dp-inner-content ul {
    margin-top: 15px;
    padding-left: 20px;
}

.dp-inner-content li {
    margin-bottom: 5px;
}

/* --- Mobile --- */
@media (max-width: 1024px) {
    .dp-faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .dp-faq-left {
        position: static;
    }

    .dp-heading-lg {
        font-size: 42px;
    }
}