

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

@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 {
  font-size:25px;
  animation-delay: 0.2s;
}

h3 {
  font-size:22px;
  animation-delay: 0.4s;
}

h4 {
  animation-delay: 0.6s;
}

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

 /* Базовые отступы секции на крупных экранах */
@media (min-width: 992px) {
  #hero {
    padding-top: 5rem;   /* py-lg-6 в разметке добавляет ещё, можно подстроить */
    padding-bottom: 5rem;
  }
}
/* 1) Глобально отключаем горизонтальный скролл */
html { overflow-x: clip; }               /* современные браузеры */
body { overflow-x: hidden; width: 100%; } /* фолбэк */

.content {
  border-radius: 5px;
  box-shadow: 0 6px 12px #929273;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.content:hover {
  box-shadow: 0 8px 16px #8d8148;
  transform: translateY(-2px);
}

.content-box {
  border: 2px solid #8d8148;
  border-radius: 5px;
  box-shadow: 0 6px 12px #929273;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.image-box{
  height:400px;
}
@media (max-width:991px) {
  .image-box{
    height:150px;
  }
  p{
    font-size:16px;
  }
}

.price-box{
  height:500px;;
}

/* styles-warum-steuerblick.css */

#warum-steuerblick .badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#warum-steuerblick .card {
  transition: transform .2s ease, box-shadow .2s ease;
  border-radius: 1rem;
}

#warum-steuerblick .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 .75rem 1.25rem rgba(0,0,0,.08);
}

#warum-steuerblick .card-body p {
  line-height: 1.6;
}

/* styles-team.css */

#experten .team-card {
  border-radius: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

#experten .team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 .9rem 1.25rem rgba(0,0,0,.08);
}

#experten .team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: inline-block;
  border: 4px solid rgba(13,110,253,.15); /* оттенок primary через прозрачность */
}

/* about.css */

/* Геро-изображение слегка ограничиваем по высоте на больших экранах */
.about-hero-img {
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}

/* Карточки и блоки — лёгкий hover для «живости» */
#mission-werte article,
#arbeitsweise .card {
  transition: transform .2s ease, box-shadow .2s ease;
  border-radius: 1rem;
}

#mission-werte article:hover,
#arbeitsweise .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 .9rem 1.25rem rgba(0,0,0,.08);
}

/* Чуть увеличенные бейджи-номера */
#about-hero .badge,
#arbeitsweise .badge {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* pricing.css */

#preise .pricing-card {
  border-radius: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

#preise .pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 .9rem 1.25rem rgba(0,0,0,.08);
}

#preise .badge {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

#preise .card-header {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

#preise .card-footer {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

@media (min-width: 768px) {
  /* Выравнивание высоты для карточек на md+ */
  #preise .card-body {
    display: flex;
    flex-direction: column;
  }
}

/* faq.css */

#faq .accordion-item {
  border-radius: 1rem;
  overflow: hidden; /* чтобы радиусы применялись и к содержимому */
  transition: box-shadow .2s ease, transform .2s ease;
  background: #fff;
}

#faq .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 .9rem 1.25rem rgba(0,0,0,.08);
}

#faq .accordion-button {
  padding: 1rem 1.25rem;
}

#faq .accordion-button:not(.collapsed) {
  background-color: rgba(13,110,253,.06); /* оттенок primary через прозрачность */
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.05);
}

#faq .accordion-body {
  line-height: 1.65;
}




