.main-section {
  position: relative;
  background-image: url('assets/images/main_photo.png');
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 100px 20px; /* регулируй по необходимости */
  z-index: 1;
  overflow: hidden;
}

.main-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Уровень затемнения */
  z-index: -1;
}

h1, h2, h3, h4{
    color: #453742;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

h1, h2, h3, h4 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Добавим небольшую задержку для красивого каскада */
h2 {
  animation-delay: 0.2s;
}

h3 {
  animation-delay: 0.4s;
}

h4 {
  animation-delay: 0.6s;
}

@media(max-width:680px){
  .h5{
    font-size:18px;
  }
  h2{
    font-size: 22px;
  } 
  
}

/* pricing.css — стили поверх Bootstrap 5.x */
.section-pricing {
  --bm-card-radius: 1rem;
  --bm-ring: 0 0 0 .25rem rgba(13,110,253,.15);
}

.pricing-card {
  border-radius: var(--bm-card-radius);
}

.pricing-card .card-body {
  padding: 1.5rem;
}

@media (min-width: 992px) {
  .pricing-card .card-body { padding: 2rem; }
}

/* Featured (средняя) карточка */
.pricing-card.featured {
  border-width: 2px;
  transform: translateY(-2px);
}
.pricing-card.featured:hover {
  transform: translateY(-4px);
}

/* Кастомный бейдж-обводка */
.badge.bg-outline {
  --bs-badge-padding-x: .6rem;
  --bs-badge-padding-y: .4rem;
  color: var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), .08);
  border: 1px solid rgba(var(--bs-primary-rgb), .25);
  font-weight: 500;
}

/* Чекбоксы-иконки в списках преимуществ */
.pricing-card li i {
  font-size: 1.1rem;
}

/* Таблица доп. услуг */
.table > :not(caption) > * > * {
  padding: .9rem .75rem;
}
.table-responsive {
  border-radius: .75rem;
  overflow: hidden;
}

/* Фокус-состояния для доступности */
.pricing-card .btn:focus-visible,
.section-pricing a:focus-visible,
.section-pricing button:focus-visible,
.section-pricing .card:focus-within {
  outline: none;
  box-shadow: var(--bm-ring);
}

/* Поддержка темной темы (если сайт тёмный) */
@media (prefers-color-scheme: dark) {
  .section-pricing .card { background-color: #12161c; }
  .section-pricing .table { --bs-table-bg: #0f141a; --bs-table-color: #dee2e6; }
  .section-pricing .table thead tr { background-color: #0b1016 !important; }
  .section-pricing .text-body-secondary { color: #a7b0bb !important; }
  .badge.bg-outline {
    color: #6ea8fe;
    background-color: rgba(110,168,254,.08);
    border-color: rgba(110,168,254,.3);
  }
}