.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.4); /* Уровень затемнения */
  z-index: -1;
}

h1, h2, h3, h4{
    color: #5c5a49;
}

@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;
  } 
  
}
div.cookiejar__container{
    padding-bottom: 60px;;
}  

.price-card { border-radius: 1rem; }
  .price-card .card-header { border-bottom: 0; }
  .price-card .h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
  .price-card.highlight { outline: 2px solid var(--bs-primary); }
  .badge.bg-secondary-subtle { background-color: rgba(108,117,125,.12) !important; }
  .badge.bg-danger-subtle { background-color: rgba(220,53,69,.12) !important; }
  .text-secondary-emphasis { color: #6c757d !important; }
  .text-danger-emphasis { color: #dc3545 !important; }
  @media (prefers-reduced-motion: no-preference) {
    .price-card:hover { transform: translateY(-2px); transition: .2s ease; }
  }

  #faq .faq-item {
    border: 1px solid rgba(0,0,0,.075);
    border-radius: .75rem;
    background: #fff;
    overflow: hidden;
  }
  #faq .faq-item[open] { border-color: var(--bs-primary); box-shadow: 0 .25rem .75rem rgba(0,0,0,.05); }
  #faq .faq-toggle {
    cursor: pointer;
    padding: 1rem 1.25rem;
    list-style: none;
  }
  #faq .faq-toggle::-webkit-details-marker { display: none; }
  #faq .faq-icon {
    width: 1.25rem; height: 1.25rem; flex: 0 0 1.25rem;
    border-radius: 50%;
    position: relative;
    border: 2px solid currentColor;
    opacity: .65;
  }
  /* plus/minus icon */
  #faq .faq-icon::before, #faq .faq-icon::after {
    content: ""; position: absolute; inset: 50% auto auto 50%;
    width: .75rem; height: 2px; background: currentColor;
    transform: translate(-50%, -50%);
  }
  #faq .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
  /* when open -> minus */
  #faq .faq-item[open] .faq-icon::after { display: none; }

  #faq .faq-body {
    padding: 0 1.25rem 1rem;
    border-top: 1px solid rgba(0,0,0,.05);
    color: var(--bs-body-color);
  }

  /* Hover/Focus states */
  #faq .faq-toggle:hover { background: rgba(0,0,0,.02); }
  #faq .faq-toggle:focus { outline: none; box-shadow: inset 0 0 0 2px rgba(var(--bs-primary-rgb), .15); }
  #faq .faq-item:focus-within { border-color: var(--bs-primary); }

  /* Typography tweaks */
  #faq p { line-height: 1.6; }