html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Основной шрифт для лендинга */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
}

/* Заголовки для лендинга */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: bold;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Адаптивные стили для лендинга */
.hero-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1rem;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
}

/* Увеличенный базовый размер текста для лендинга */
.pain-section p,
.benefits-section p,
.product-section p,
.offer-section p {
  font-size: 20px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .pain-section p,
  .benefits-section p,
  .product-section p,
  .offer-section p {
    font-size: 20px;
  }
}

/* Стили для контейнеров с фоном */
.container.bg-light {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .container.bg-light {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Стили для иконок в кругах в разделе Продукт */
.product-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.product-icon-container .material-symbols-outlined {
  font-size: 32px;
}

@media (min-width: 768px) {
  .product-icon-container {
    width: 80px;
    height: 80px;
  }
  
  .product-icon-container .material-symbols-outlined {
    font-size: 40px;
  }
}

/* Material Symbols стили */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}