

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

@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 #d8d4ca;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.content-box {
  border: 2px solid #d8d4ca;
  border-radius: 5px;
  box-shadow: 0 6px 12px #d8d4ca;
  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:18px;
  }
}

.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: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: inline-block;
  border: 4px solid #680000; /* оттенок primary через прозрачность */
}

section-pad { padding-top: 4rem; padding-bottom: 4rem; }
    .brand-shadow { box-shadow: 0 .5rem 1rem rgba(0,0,0,.10); border-radius: .75rem; }
    .checklist li + li { margin-top: .5rem; }

/* Spacing утилита (если нет глобальной) */
.section-pad { padding-top: 4rem; padding-bottom: 4rem; }

/* Карточки прайса — акцент без выхода за рамки Bootstrap */
.pricing-card .display-6 { line-height: 1.1; }
.pricing-card .badge { border-radius: 999px; padding: .5rem .75rem; }

/* price.css — кастомные стили секции Pricing */
#pricing {
  background: #f8fafc;
}

#pricing .pricing-card {
  border: 1px solid #e5e7eb;
  border-radius: .75rem;
  transition: transform .15s ease, box-shadow .15s ease;
}

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

#pricing .pricing-card.popular {
  border: 1.5px solid rgba(13, 110, 253, .35);
}

#pricing .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

#pricing .pricing-features li {
  margin-bottom: .5rem;
}

#pricing .pricing-features i {
  margin-right: .4rem;
}

/* Table polish */
#pricing table thead th {
  border-bottom-width: 2px;
}

@media (min-width: 992px) {
  #pricing .display-6 {
    letter-spacing: .2px;
  }
}


/* Базовые отступы секции */
.section-pad { padding-top: 4rem; padding-bottom: 4rem; }

/* faq.css */
#faq {
  background: #f8fafc;            /* light, accessible backdrop */
}

#faq .accordion-button {
  font-weight: 600;
}

#faq .accordion-button:focus {
  box-shadow: none;
}

#faq .accordion-button:not(.collapsed) {
  background-color: #eef2f7;       /* subtle open state */
}

#faq .accordion-item {
  border: 1px solid #e5e7eb;       /* soft border */
  border-radius: .5rem;
  overflow: hidden;
  margin-bottom: .75rem;
}

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

@media (min-width: 992px) {
  #faq .display-6 {
    letter-spacing: .2px;
  }
}


