  .about-us-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-us-title {
    font-weight: 500;
    margin: 50px auto;
    text-align: center;
  }

  .about-descr {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 90px;
  }

  .about-descr__item {
    flex: 1;
  }

  .about-descr__item-header {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 500;
    gap: 16px;
    margin-bottom: 24px;
  }

  .about-descr__item-text {
    font-size: 16px;
    color: #6C757D;
  }
  .why-us {
    text-align: center;
    margin-bottom: 90px;
  }
  
  .why-us h2 {
    font-size: 32px;
    color: #212529;
    font-weight: 500;
    margin-bottom: 50px;
  }
  
  .why-us-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
  }
  
  /* Карточки */
  .why-us-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 400px;
    height: 208px;
    background-color: #1E8194;
    padding: 24px;
    border-radius: 25px;
    text-align: left;
    color: #FFFFFF;
  }

  .why-us-item:nth-child(2), .why-us-item:nth-child(3) {
    background-color: #53A3B3;
  }
  
  .why-us-item h3 {
    font-size: 28px;
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 36px;
  }
  
  .why-us-item p {
    font-size: 16px;
  }
  
  /* Расположение карточек */
  .top-left {
    top: 0;
    left: 0;
  }
  
  .top-right {
    top: 0;
    right: 0;
  }
  
  .bottom-left {
    bottom: 0;
    left: 0;
  }
  
  .bottom-right {
    bottom: 0;
    right: 0;
  }
  
  /* Центрированное изображение */
  .why-us-image {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 817px;
    height: 556px;
  }
  
  .why-us-image img {
    width: 100%;
    border-radius: 10px;
  }
  
  /* Текстовые элементы (features) */
  .why-us-features {
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 284px;
  }
  
  .why-us-features li {
    font-size: 16px;
    color: #FFFFFF;
    background-color: #212529;
    color: #fff;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

  }
  
  /* Расположение features */
  .left {
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
  }
  
  .right {
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
  }

  .our-discounts {
    margin-bottom: 90px;
  }

  .our-discounts > h2 {
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
  }

.payment-section {
  margin-bottom: 60px;
}

.payment-section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 32px;
  font-weight: 500;
  justify-content: center;
  margin-bottom: 70px;
}

.card-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Адаптивные колонки */
  gap: 30px; /* Отступы между карточками */
}

.card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column; /* Для кнопки внизу */
}

.card {
  flex: 1; /* Растягиваем карточки по высоте */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #E9ECEF;
  border-radius: 42px;
}

.payment-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 42px;
  font-size: 24px;
  padding: 15px 12px 15px 30px;
  font-weight: 500;
  background-color: #106B7D;
  color: white;
}

.payment-block__content {
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
  transition: justify-content 0.3s;
}

.card-wrapper:hover .card {
  border-radius: 42px 42px 0 0;
}

.card h3 {
  margin-bottom: 10px;
  color: #005c7a;
}

.card p {
  font-size: 14px;
  color: #555;
}

.details-button-container {
  padding: 0 20px;
  padding-bottom: 20px;
}

.details-button {
  opacity: 0;
  visibility: hidden;
  padding: 10px 20px;
  background-color: #1E8194;
  color: #fff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
}

/* .card-wrapper:hover .payment-block__content {
  justify-content: flex-end;
} */

.card-wrapper:hover .details-button {
  opacity: 1;
  visibility: visible;
}

.card-wrapper:hover .details-button-container {
  background-color: #E9ECEF;
  border-radius: 0 0 42px 42px;
}

.card-wrapper:nth-child(2) .card .payment-block__header  {
  background-color: #1E8194;
}

.card-wrapper:nth-child(3) .card .payment-block__header {
  background-color: #53A3B3;
}
.border-item {
  padding-bottom: 18px;
  border-bottom: 1px solid #9BA2A9;
  margin-bottom: 18px;
}

.payment-block__content p span {
  font-weight: 500;
}


.advantages-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 90px;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.advantage-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.advantage-header h3 {
  font-weight: 500;
  color: #212529;
}

.advantage-item p {
  color: #495057;
}

.info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-around;
  max-width: 100%;
  margin: 0 auto;
}

.info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border-radius: 15px;
  width: 100%;
}

/* SVG фон */
.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Содержимое карточки */
.info-icon {
  width: 36px;
  height: 36px;
  background-color: #1E8194;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin-top: 10px;
}

.info-icon img {
  width: 20px;
  height: 20px;
}
.info-card h3 {
  font-size: 16px;
  color: #212529;
  font-weight: 500;
  margin: 20px 0;
  z-index: 1;
  padding: 0 40px;
  align-self: flex-start;
}

.info-card:first-child .info-description {
  font-size: 20px;
}

.info-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #212529;
  color: #fff;
  border-radius: 25px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  z-index: 1;
  width: 100%;
  margin-top: 12px;
  min-height: 100px;
}

.info-card:nth-child(3) {
  justify-content: flex-start;
  gap: 40px;
}

.info-card:nth-child(3) .info-icon {
  background-color: #212529;
}

.info-card:nth-child(3) .info-socials {
  align-self: flex-start;
  padding-left: 30px;
  color: white;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 30px;
 
}

.info-card:nth-child(3) .info-socials li {
  display: flex;
  gap: 12px;
}

.map-section {
  max-width: 1200px;
  margin: 50px auto;
}

.map-section img {
  width: 100%;
  border-radius: 10px;
}

.subscribe-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.subscribe-descr {
  max-width: 365px;
}

.subscribe-descr h2 {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 500;
}

.subscribe-descr p {
  margin: 0;
  font-size: 16px;
  color: #6C757D;
}

.sub-form {
  display: flex;
  flex-direction: row;
  max-width: 526px;
  width: 100%;
  gap: 10px;
}

.sub-form input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  background-color: #E9ECEF;
  color: #212529;
}

.sub-form button {
  padding: 10px 16px;
  background-color: #1E8194;
  color: white;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1280px) {
  .breadcrumb-container {
    padding: 0 32px;
  }

  .why-us-image {
    width: 600px;
    height: auto;
    top: 55%;
  }

  .why-us-features.left {
    left: -20px;
  }

  .why-us-features.right {
    right: -20px;
  }
}

@media (max-width: 1024px) {
  .breadcrumb-container {
    padding: 0 16px;
  }

  .about-us-container {
    padding: 0 16px;
  }

  .why-us-image {
    display: none;
  }

  .why-us-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    height: auto;
  }

  .why-us-item {
    position: unset;
    width: 100%;
    height: auto;
  }

  .why-us-features.left {
    position: unset;
    transform: none;
    width: 100%;
  }

  .why-us-features.right {
    position: unset;
    transform: none;
    width: 100%;
  }

  .card {
    border-radius: 40px 40px 0 0;
  }
  .details-button-container {
    background-color: #E9ECEF;
    border-radius: 0 0 40px 40px;
  }
  .details-button {
    opacity: 1;
    visibility: visible;
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .why-us-container {
    height: auto;
  }

  /* .why-us-item {
    position: static;
    margin: 10px auto;
  }

  .why-us-image {
    position: static;
    transform: none;
    margin: 20px auto;
  } */

  .subscribe-section {
    flex-direction: column;
}

  .subscribe-descr {
      max-width: unset;
  }
  .about-descr {
    flex-direction: column;
  }

  .why-us-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-us-item:nth-child(2), .why-us-item:nth-child(3) {
    background-color: #1E8194;
  }

  .why-us-features li {
    margin-bottom: 20px;
  }

  .why-us-features li:nth-child(2) {
    margin-bottom: 0;
  }

  .payment-section__header {
    margin-bottom: 40px;
  }

  .card-container {
    grid-template-columns:  repeat(2, 1fr);
    gap: 16px;
  }

  .payment-block__header {
    font-size: 18px;
    padding: 12px;
    border-radius: 20px;
  }

  .payment-block__header img{
    width: 30px;
    height: 30px;
  }

  .payment-block__content {
    padding: 12px;
  }

  .details-button-container {
    padding: 12px;
    border-radius: 0 0 20px 20px;
  }

  .why-us-features li {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

}

@media (max-width: 480px) {

  .about-us-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .about-descr__item-header {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .about-descr__item-header img {
    width: 25px;
    height: 25px;
  }

  .about-descr {
    margin-bottom: 40px;
  }

  .why-us h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .why-us-item {
    padding: 12px;
  }

  .why-us-item h3 {
    font-size: 18px;
    gap: 8px;
  }

  .why-us-item h3 img {
    width: 25px;
    height: 25px;
  }

  .why-us-item p {
    font-size: 14px;
  }

  .why-us-features li {
    font-size: 14px;
    width: 100%;
  }

  .why-us-features li img {
    width: 15px;
    height: 15px;
  }

  .why-us {
    margin-bottom: 40px;
  }

  .our-discounts h2 {
    margin-bottom: 20px;
  }

  .our-discounts {
    margin-bottom: 40px;
  }

  .payment-section__header {
    margin-bottom: 20px;
  }

  .payment-section {
    margin-bottom: 40px;
  }

  .advantage-header h3 {
    font-size: 24px;
  }

  .advantages-section {
    margin-bottom: 40px;
  }
  .sub-form {
    flex-direction: column;
  }

  .card-container {
    grid-template-columns: 1fr;
  }

  .info-section {
    grid-template-columns: 1fr; /* Одна колонка для маленьких экранов */
  }

  .subscribe-descr h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}