@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

p{
  font-size:17px;
}

.top-5 {
    top: 5px;
}
.content {
  border: 3px solid #523857;
  border-radius: 500px;
  box-shadow: 0 6px 12px #523857;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.content-box {
  border: 3px solid #523857;
  border-radius: 1500px;
  box-shadow: 0 6px 12px #523857 ;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.image-box{
  height:350px;
}
@media (max-width:991px) {
  .image-box{
    height:250px;
  }
  p{
    font-size:16px;
  }
  h5{
  font-size:17px;
}
}

/* Визуально скрыто, но доступно для ассистивных технологий */
.visually-hidden-important {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/* Для заданного вами формата чекбокса */
.form-group.checkbox-group {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  }
.form-group.checkbox-group input[type="checkbox"] {
  margin-top: .3rem;
}

.hero {
  min-height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)),
              url('assets/images/img-hero.jpg') center/cover no-repeat;
  color: #fff;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-img {
  max-width: 85%;
}


/* --- Our Services styles --- */
#our-services .service-card{
  border-radius: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
#our-services .service-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,.08);
}

#our-services .service-badge{
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-weight: 700;
  box-shadow: 0 .25rem .75rem rgba(0,0,0,.08);
}

/* Заголовок секции можно слегка акцентировать */
#our-services h2{
  letter-spacing: .2px;
}

/* ===== Why Choose styles ===== */
#why-choose .feature-card{
  border-radius: 1rem;
  background-color: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}

#why-choose .feature-card::before{
  /* цветная полоса слева — берёт текущий цвет иконки */
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: .35rem;
  border-radius: 1rem 0 0 1rem;
  background: currentColor;
  opacity: .15;
}

#why-choose .feature-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.08);
}

#why-choose .feature-card__body{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
}

#why-choose .feature-icon{
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(var(--bs-primary-rgb, 13,110,253), .08); /* fallback */
  color: var(--bs-primary);
}

/* Подстройка фона в зависимости от присвоенного цвета иконки */
#why-choose .feature-icon.text-success{
  background: rgba(var(--bs-success-rgb, 25,135,84), .08);
  color: var(--bs-success);
}
#why-choose .feature-icon.text-secondary{
  background: rgba(var(--bs-secondary-rgb, 108,117,125), .08);
  color: var(--bs-secondary);
}

/* делаем левую полосу цвета иконки */
#why-choose .feature-icon { position: relative; }
#why-choose .feature-icon::after{
  content:"";
  position:absolute;
  left:-1rem; top:0; bottom:0;
  width:.35rem;
  border-radius:.35rem;
  background: currentColor;
  opacity:.15;
}

/* Pricing section customizations */
#pricing .pricing-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border-radius: 1rem;
}

#pricing .pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
}

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

#pricing .pricing-price {
  line-height: 1;
}

#pricing .pricing-price .currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 0.1rem;
  opacity: 0.8;
}

#pricing .pricing-price .amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

#pricing .pricing-price .period {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.95rem;
}

#pricing .badge {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.12);
}

#pricing .list-unstyled i {
  font-size: 1.05rem;
  line-height: 1.4;
}

/* Reduce motion if user prefers */
@media (prefers-reduced-motion: reduce) {
  #pricing .pricing-card,
  #pricing .pricing-card:hover {
    transform: none !important;
    transition: none !important;
  }
}




h1{
  font-size: 30px;
  color:#2f3133;
}
h2{
  font-size: 25px;
  color:#2f3133;
}
h3{
  font-size: 20px;
  color:#2f3133;
}

.testimonial-img{
  width:80px;
  height:80px;
}
