.section-text {
    display: flex;
    gap: 20px;
}

.flex-text {
    flex: 1;
}

.flex-text ul {
    list-style: none;
}

.base-text-section:nth-child(2n+1) .section-text {
    flex-direction: row-reverse;
}

/* .base-text-section:nth-child(2n+1) .flex-text {
    text-align: right;
} */
.base-text-section:nth-child(2n+1) li {
    margin-right: 40px;
}

.flex-img {
    width: 400px;
    border-radius: 20px;
    overflow: hidden;
}

/* обычный список (точка слева) */
.base-text-section li {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul {
    padding: 0;
}

.base-text-section li::before {
    content: '•';
}

/* .base-text-section:nth-child(2n+1) li {
    flex-direction: row-reverse;
    text-align: right;
} */
@media (max-width: 850px) {
    .section-text {
        flex-wrap: wrap;
    }

    .flex-img,
    .flex-text {
        width: 100%;
    }
}

.order-section {
    width: min(2200px, 80%);
    margin: 0 auto;
    padding: 40px 20px;
}

.order-title {
    text-align: center;
    margin-bottom: 30px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 500;
}

input,
select,
textarea {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

textarea {
    resize: vertical;
    min-height: 90px;
}

select[multiple] {
    min-height: 100px;
}

.radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio input {
    accent-color: #000;
}

small {
    font-size: 12px;
    color: #666;
}

.btn-submit {
    padding: 12px 18px;
    background: var(--accent);
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: 0.15s;
    width: max-content;
}


.btn-submit:hover {
    opacity: 0.85;
}

.hidden {
    display: none;
}
.h2-center{
    text-align: center;
}