body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  padding: 0;
}

/* Для заголовков, где используется Playfair Display */
h1,
h2,
h3,
button .title--serif {
  font-family: "Playfair Display", serif;
  color: #96415a;
}

.header {
  padding: 20px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  top: 0;
  z-index: 10;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo-img {
  height: 106px;
}

.nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  color: #96415a;
  font-weight: 500;
}

.button {
  padding: 20px 80px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background-color: #96415a;
  color: white;
  transition: 0.3s;
  margin-bottom: 80px;
}

.button--small {
  padding: 8px 16px;
  font-size: 13px;
}

.button--bordered {
  background-color: transparent;
  color: #007bff;
  border: 1px solid #007bff;
}

/* === Бургер кнопка === */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.header__burger-line {
  width: 100%;
  height: 2px;
  background-color: #96415a;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .header__burger {
    display: flex;
  }

  .header__container {
    justify-content: space-between;
  }

  .header__nav {
    min-height: 100vh;
    position: absolute;
    top: 17%;
    right: 0;
    left: 0;
    background-color: #ffffff;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  .nav.nav--open {
    display: flex;
  }

  .nav__list {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding-left: 0;
  }

  .header__logo-img {
    height: 60px; /* уменьшенная версия логотипа на мобильных */
  }
}

/* ========== Hero ========== */
.hero {
  padding: 0px 20px;
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 60%,
      #fdfaf9 100%
    ),
    /* плавный переход в цвет */ url("../images/bg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* height: 800px; */
  background-blend-mode: normal;
}

.hero__image-mobile-wrapper {
  display: none;
}

.hero__container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

.hero__content {
  flex: 0 0 56%;
  color: #fff;
}

.hero__title {
  font-size: 50px;
  font-weight: 700;
  margin-top: 100px;
  margin-bottom: 20px;
  color: #fff;
}

.hero__highlight {
  color: #9e1b5d;
}

.hero__text,
.hero__dates {
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero__dates {
  margin-top: 130px;
}

.hero__image-wrapper {
  flex: 1 1 400px;
  text-align: center;
}

.hero__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .hero {
    background-image: none;
    min-height: auto;
    flex-direction: column;
  }

  .hero__image-mobile-wrapper {
    display: block;
  }

  .hero__image-mobile {
    display: block;
    width: 100%;
    height: auto;
    display: block;
  }

  .hero__content {
    color: #000;
  }

  .hero__text {
    text-align: left;
  }

  .hero__dates {
    margin-top: 30px;
    text-align: left;
  }
}

/* ========== About ========== */
.about {
  padding: 80px 20px;
  background-color: #fff;
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
}

.about__title {
  text-align: center;
  font-size: 45px;
  color: #6d1b39;
  margin-bottom: 40px;
}

.about__content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.about__video {
  flex: 1 1 50%;
  max-width: 800px;
}

.about__video-thumbnail {
  max-width: 100%;
  border-radius: 10px;
}

.about__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #6d1b39;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
}

.about__video-element {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.about__text {
  flex: 1 1 500px;
  font-size: 16px;
  line-height: 1.6;
}

.about__text-title {
  font-size: 25px;
  margin-top: 0;
}

.about__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about__benefit {
  flex: 0 0 49%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border: 1px dashed #a9a5a5;
  border-radius: 20px;
  padding: 15px;
  align-items: center;
}

.about__benefit-flex {
  display: flex;
  flex-direction: column;
}

.about__benefit-icon {
  height: 100%;
  width: auto;
  max-width: 80px; /* ограничим максимальную ширину иконки */
  object-fit: contain; /* чтобы иконка не растягивалась некорректно */
  margin-right: 15px;
}

.about__benefit-title,
.about__benefit-text {
  text-align: left;
  margin: 0;
}

.about__benefit-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.about__benefit-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
  /* чтобы текст занимал всю ширину справа */
  flex: 1;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .hero__container,
  .about__content,
  .about__benefits {
    flex-direction: column;
    text-align: center;
  }

  .hero__title {
    font-size: 26px;
    color: #000;
    text-align: left;
    margin-top: 10px;
    font-size: 30px;
  }

  .about__title {
    font-size: 35px;
  }

  .about__text {
    text-align: left;
  }

  .about__benefit {
    flex: 0 0 100%;
  }

  .about__text-title {
    font-size: 20px;
  }

  .about__benefit-title {
    font-size: 18px;
  }

  .about__video {
    width: 100vw; /* на всю ширину экрана */
    margin-left: calc(-52vw + 50%); /* выровнять по центру контейнера */
    max-width: 100vw;
    box-sizing: border-box;
    padding-left: 20px;
  }
}

/* course-results */
.course-results {
  background-color: #cb9b7c;
}

.course-results__container {
  padding: 40px 0px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.course-results__title {
  font-size: 45px;
  margin-bottom: 40px;
  color: #fff;
}

.course-results__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Карточка */
.course-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: left;
}

.course-card__icon {
  width: 100%;
}

.course-card__number {
  position: absolute;
  top: -10px;
  right: -10px;
  color: #c94e4e;
  border: 1px solid #c94e4e;
  background-color: #fff;
  border-radius: 50%;
  padding: 5px 12px;
  font-weight: bold;
  font-size: 30px;
  margin: 0;
}

.course-card__number-white {
  color: #fff;
}

.course-card__title {
  font-size: 25px;
  margin-bottom: 15px;
}

.course-card__list {
  list-style: none;
  padding-left: 0;
}

.course-card__list li {
  position: relative;
  padding-left: 30px; /* место под иконку слева */
  margin-bottom: 10px; /* отступ между пунктами */
}

.course-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("/images/li.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .course-results__title {
    font-size: 35px;
  }

  .course-card__title {
    font-size: 20px;
  }

  .course-card__list {
    font-size: 14px;
  }

  .course-card__number {
    font-size: 25px;
  }

  .course-results__cards {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .course-results__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

/* instructor */
.instructor {
  padding: 60px 20px;
}

.instructor__container {
  max-width: 1200px;
  margin: 0 auto;
}

.instructor__title {
  text-align: center;
  font-size: 45px;
  color: #8a2e4a;
  margin-bottom: 40px;
}

.instructor__content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.instructor__photo-wrapper {
  flex: 1 1 300px;
  max-width: 400px;
}

.instructor__photo {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.instructor__info {
  flex: 1 1 400px;
}

.instructor__name {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}

.instructor__list {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
}

.instructor__list li {
  position: relative;
  padding-left: 30px; /* место под иконку слева */
  margin-bottom: 10px; /* отступ между пунктами */
}

.instructor li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("/images/li.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

.instructor__quote {
  position: relative;
  padding: 40px 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.instructor__quote-text {
  color: #5f4545;
  font-size: 16px;
  line-height: 1.6;
}

.instructor__quote-icon {
  position: absolute;
  width: 32px;
  height: auto;
  opacity: 0.8;
}

.instructor__quote-icon--top {
  top: 10px;
  left: 10px;
}

.instructor__quote-icon--bottom {
  bottom: 10px;
  right: 10px;
}

@media (max-width: 768px) {
  .instructor__content {
    flex-direction: column;
    align-items: center;
  }

  .instructor__photo-wrapper,
  .instructor__info {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .instructor__title {
    font-size: 35px;
  }
}

/* tree */
.tree {
  background-color: #fefcfa;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.tree__container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
}

.tree__title {
  font-size: 36px;
  margin-bottom: 10px;
}

.tree__subtitle {
  font-size: 16px;
  color: #5f4545;
  margin-bottom: 40px;
}

.tree__image-wrapper {
  position: relative;
  display: inline-block;
}

.tree__image {
  width: 100%;
  max-width: 700px;
}

/* Гранаты */
.pomegranate {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url("/images/pomegranate.webp") no-repeat center;
  background-size: contain;
  border: none;
  cursor: pointer;
}

/* Tooltip */
.tooltip {
  position: absolute;
  background-color: #d69c7c;
  color: #2d1a1a;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  z-index: 10;
  display: none;
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .tree {
    padding-top: 0;
  }

  .tree__title {
    margin-top: 0;
  }

  .pomegranate {
    width: 24px;
    height: 24px;
  }
}

/* structure */
.structure {
  padding: 60px 20px;
}

.structure__container {
  max-width: 1200px;
  margin: 0 auto;
}

.structure__title {
  text-align: center;
  font-size: 45px;
  margin-bottom: 40px;
}

.structure__features {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.structure__feature {
  width: 160px;
  text-align: center;
  font-size: 16px;
  color: #444;
}

.structure__icon {
  height: 70px;
  margin-bottom: 10px;
}

.structure__modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.structure__module {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.structure__module-title {
  background-color: #8a2e4a;
  color: white;
  padding: 25px;
  text-align: center;
  position: relative;
  font-size: 25px;
  margin: 0;
}

.structure__module-text {
  padding: 25px;
  font-size: 16px;
  color: #444;
}

@media (max-width: 768px) {
  .structure__features {
    flex-direction: column;
    align-items: center;
  }

  .structure__icon {
    height: 45px;
  }

  .structure__title {
    font-size: 35px;
    margin-top: 0;
  }

  .structure {
    padding-top: 10px;
  }
}

/* price section */
.price {
  background-color: #893a50;
  padding: 60px 20px;
  color: #fff;
}

.price__container {
  max-width: 1200px;
  margin: auto;
}

.price__title {
  font-size: 42px;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}

.price__content {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.price__ellipse {
  position: absolute;
  top: 120px;
  left: -120px;
  width: 600px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

/* Чтобы эллипс не перекрывал */
.price {
  position: relative; /* нужно для абсолютного позиционирования внутри */
  overflow: visible; /* чтобы эллипс мог выходить за пределы */
}

/* .price__list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding-left: 150px;
  max-width: 550px;
  flex: 1 1 20%;
}

.price__list li {
  margin-bottom: 40px;
  line-height: 1.5;
  font-size: 16px;
}

.price__markers {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marker {
  position: absolute;
  width: 48px;
  height: 48px;
}

.marker--1 {
  top: 10px;
  left: 5px;
}
.marker--2 {
  top: 120px;
  left: 70px;
}
.marker--3 {
  top: 200px;
  left: 95px;
}
.marker--4 {
  top: 265px;
  left: 100px;
}
.marker--5 {
  top: 330px;
  left: 95px;
}
.marker--6 {
  top: 390px;
  left: 80px;
}
.marker--7 {
  top: 460px;
  left: 50px;
}
.marker--8 {
  top: 515px;
  left: 10px;
} */

.price__markers {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  height: 600px;
}

.marker-item {
  position: absolute;
  display: flex;
  align-items: center;
}

.marker {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.marker-text {
  margin-left: 12px;
  max-width: 400px;
  font-size: 16px;
  line-height: 1.4;
}

/* Позиции по дуге */
.marker--1 {
  top: 10px;
  left: 5px;
}
.marker--2 {
  top: 120px;
  left: 70px;
}
.marker--3 {
  top: 200px;
  left: 95px;
}
.marker--4 {
  top: 265px;
  left: 100px;
}
.marker--5 {
  top: 330px;
  left: 95px;
}
.marker--6 {
  top: 390px;
  left: 80px;
}
.marker--7 {
  top: 460px;
  left: 50px;
}
.marker--8 {
  top: 515px;
  left: 10px;
}

/* Блок с ценой */
.price__box {
  background-image: url("/images/form.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex: 1 1 20%;
  color: #7e2c40;
  text-align: center;
  z-index: 3;
}

.price__option {
  margin-top: 200px;
}

.price__value {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}

.price__label {
  font-size: 16px;
  margin: 0 0 25px 0;
}

.price__btn {
  background-color: #893a50;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.price__btn:hover {
  background-color: #702c3e;
}

/* Адаптив */
@media (max-width: 768px) {
  .price__content {
    flex-direction: column;
    align-items: center;
  }

  .price__box {
    width: 100%;
  }

  .price__ellipse {
    width: 100%;
    opacity: 0.3;
  }

  .marker {
    width: 36px;
    height: 36px;
  }

  .price__value {
    font-size: 17px;
  }

  .price__option {
    margin-top: 20px;
  }

  .price__ellipse {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .price__container {
    flex-direction: column;
    align-items: center;
  }

  .price__box {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-image: url("/images/form.webp");
    background-size: cover; /* полностью покрывает */
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
  }

  .price__title {
    font-size: 35px;
  }

  .price__ellipse {
    display: none;
  }

  .marker {
    width: 25px;
    height: 25px;
  }

  @media (max-width: 768px) {
    .price__markers {
      height: auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .marker-item {
      position: static;
      display: flex;
      align-items: flex-start;
    }

    .marker-text {
      margin-left: 10px;
    }
  }
}

/* reviews */

.reviews {
  padding: 60px 20px;
  text-align: center;
}

.reviews__container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews__title {
  font-size: 45px;
  margin-bottom: 40px;
}

.reviews__slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews__slides {
  display: flex;
  overflow: hidden;
}

.reviews__slide {
  display: none;
  width: 100%;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.reviews__slide--active {
  display: flex;
}

.reviews__image {
  width: 100%;
  min-width: 250px;
  border-radius: 12px;
}

.reviews__dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.reviews__dot {
  width: 12px;
  height: 12px;
  background-color: #d3b7b7;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.reviews__dot--active {
  background-color: #8a2e4a;
}
reviews__dot--active {
  background-color: #8a2e4a;
}
.reviews__slides .reviews_desk {
  display: block;
}
.reviews__slides .reviews_mob {
  display: none;
}
@media (max-width: 768px) {
  .reviews__slides .reviews_desk {
    display: none;
  }
  .reviews__slides  .reviews_mob {
    display: block;
  }
}/* Адаптив */
@media (max-width: 768px) {
  .reviews__title {
    font-size: 35px;
    margin-top: 0;
  }
}

/* consultation */

.consultation {
  padding: 60px 20px;
  background-color: #fff;
}

.consultation__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  justify-content: space-between;
}

.consultation__form {
  flex: 0 0 50%;
}

.consultation__title {
  font-size: 44px;
  margin-bottom: 10px;
  width: 50%;
}

.consultation__subtitle {
  font-size: 16px;
  margin-bottom: 30px;
  color: #444;
}

.consultation__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consultation__input,
.consultation__textarea {
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.consultation__textarea {
  min-height: 100px;
  resize: vertical;
}

.consultation__label {
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
  color: #444;
}

.consultation__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
}

.consultation__checkbox input {
  margin-right: 8px;
}

.consultation__button {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #8a2e4a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.consultation__button:hover {
  background-color: #702c3e;
}

/* Правая часть */

.consultation__image-wrapper-mobile {
  display: none;
}

.consultation__image-wrapper-desktop {
  flex: 1 1 400px;
  position: relative;
  max-width: 450px;
}

.consultation__image {
  width: 100%;
}

.consultation__decor {
  position: absolute;
  background: #8a2e4a;
  border-radius: 50%;
}

.consultation__decor--circle {
  width: 40px;
  height: 40px;
  bottom: 20px;
  right: -10px;
  background: #e7c3b4;
}

.consultation__decor--dot {
  width: 12px;
  height: 12px;
  top: 10px;
  right: 40px;
  background: #8a2e4a;
}

/* Адаптив */
@media (max-width: 768px) {
  .consultation {
    padding-top: 0;
  }
  .consultation__container {
    flex-direction: column;
    align-items: center;
  }

  .consultation__image-wrapper-desktop {
    order: -1;
    width: 100%;
    max-width: 300px;
    display: none;
  }

  .consultation__image-wrapper-mobile {
    display: block;
  }

  .consultation__title {
    font-size: 35px;
    text-align: left;
    width: 100%;
    line-height: 55px;
    padding: 0;
    margin: 0;
  }

  .consultation__subtitle {
    margin-top: 0;
  }
}

.footer {
  background-color: #fdfaf9;
  padding: 40px 0;
  text-align: center;
  font-family: inherit;
  color: #333;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logo-img {
  max-width: 180px;
  height: auto;
  margin: 0 auto 20px;
}

.footer__social {
  margin-bottom: 20px;
}

.footer__social-link {
  display: inline-block;
  padding: 10px;
  transition: background-color 0.3s;
}

.footer__social-link:hover {
  background-color: #a84a62;
}

.footer__social-icon {
  width: 40px;
  height: 40px;
  display: block;
}

.footer__info {
  font-size: 14px;
  color: #999;
}

.footer__link {
  color: #aaa;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.footer__link:hover {
  text-decoration: underline;
}

/* Адаптив */
@media (min-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer__social-link {
    padding: 12px;
  }

  .footer__info {
    font-size: 15px;
  }
}

/* callback-form */
.callback-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  max-width: 360px;
  width: 90%;
}

.callback-form__title {
  color: #7f2b48;
  font-size: 24px;
  margin-bottom: 10px;
}

.callback-form__description {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}

.callback-form__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.callback-form__input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.callback-form__phone-wrapper {
  position: relative;
}

.callback-form__button {
  background-color: #7f2b48;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.callback-form__button:hover {
  background-color: #6c1f3c;
}

.callback-form__close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
