input::placeholder {
    color: #8884ff;
    font-family: "Segoe UI", sans-serif;
}

.header__logo img, .footer__logo img, .header__logo svg, .footer__logo svg {
    max-height: 60px;
}

input {
    color: #8884ff;
    font-family: "Segoe UI", sans-serif;
}

input.error[type="checkbox"] + label {
    border: 2px solid red;
    padding: 3px 5px;
    border-radius: 4px;
    background-color: #ffe6e6;
}

/* Кнопка отправки */
button[type="submit"] {
    width: 100%;
    transition: opacity 0.3s, background-color 0.3s;
}

button[type="submit"][disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.card-glass-opacity-4 {
    --glass-opacity: 0.7;
}

.section.quiz .swiper-slide {
    background: rgba(192, 170, 164, var(--glass-opacity));
}

.section.quiz .card-glass-opacity-2 {
    --glass-opacity: 0.4;
}

.popup-express__inner .hero-doctor__name {
    font-size: 16px;
}

.hero-doctor__name {
    font-size: 17px;
}

.form-check-label {
    color: #2d2d2d;
}

.hero-doctor__image img {
    display: flex;
    margin: auto;
}

/* Анимация тряски */
@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    20%,
    60% {
        transform: translateX(-5px);
    }
    40%,
    80% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* Подсветка label при неотмеченном чекбоксе */
.form-check-label.highlighted {
    color: #d9534f !important;
    transition: color 0.3s;
}

/* Если нужно подчеркнуть */
.form-check-label.highlighted::after {
    content: " ← подтвердите согласие";
    color: #d9534f;
    font-size: 12px;
    margin-left: 5px;
}

/* Подсветка ссылки внутри label, если она есть */
.form-check-label.highlighted a {
    color: #d9534f !important;
    text-decoration: underline;
}

/* Подсказка-ошибка рядом с чекбоксом (если используешь) */
.policy-hint {
    color: #ff0000;
    font-size: 12px;
    margin-left: 10px;
    font-weight: normal;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.section-header {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
}
.section-header__heading {
    color: #000;
    font-size: 48px;
    font-weight: 500;
    line-height: 48px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    font-family: inherit;
    text-align: center;
}
.section-header__addons {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.section-header .btn {
    height: 46px;
    min-width: 190px;
}
.section-policy {
    padding: 60px 0;
}
.section-policy a {
    display: inline;
    text-decoration: underline;
}
.section-policy h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}
.section-policy h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
}
.section-policy p {
    margin-bottom: 15px;
    text-align: justify;
}
.section-policy ul {
    margin-bottom: 15px;
    padding-left: 20px;
}
.section-policy li {
    margin-bottom: 8px;
}
.section-policy .section {
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .section-policy {
        padding: 40px 0;
    }
    .section-header__heading {
        font-size: 24px;
        line-height: 30px;
        text-align: center;
    }
    .section-header__heading:before {
        display: none;
    }
    .section-policy p {
        font-size: 16px;
    }
}
