.about-mall {
  padding-top: 30px ;
}

.about-mall__content {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.about-mall__text {
  flex: 0 0 45%;
}

.about-mall__image {
  flex: 1;
}

.about-mall__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.about-mall__text h2 {
  margin: 0 0 24px;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
}

.about-mall__text h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #e53935;
  margin-top: 16px;
}

.about-mall__text p {
  margin: 0 0 20px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.about-mall__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-mall__stat {
  text-align: center;
}

.about-mall__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.about-mall__value {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.about-mall__label {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

@media (max-width: 992px) {
  .about-mall__content {
    flex-direction: column;
  }

  .about-mall__text,
  .about-mall__image {
    flex: none;
  }

  .about-mall__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-mall__stats {
    grid-template-columns: 1fr;
  }

  .about-mall__text h2 {
    font-size: 32px;
  }
}

.tenant-benefits {
  padding-top: 30px ;
}

.tenant-benefits__title {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.tenant-benefits__line {
  width: 40px;
  height: 3px;
  background: #ff4d4f;
  margin: 20px 0 50px;
}

.tenant-benefits__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}

.tenant-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tenant-benefits__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.tenant-benefits__text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #222;
}

@media (max-width: 1200px) {
  .tenant-benefits__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .tenant-benefits__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .tenant-benefits__item img{
    margin: 0;
  }
}

@media (max-width: 480px) {
  .tenant-benefits__list {
    grid-template-columns: 1fr;
  }
}




.arend-form {
  padding: 60px 0;
}

.arend-form__content {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.arend-form__form {
  flex: 0 0 45%;
}

.arend-form__image {
  flex: 1;
}

.arend-form__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}


@media (max-width: 992px) {
  .arend-form__content {
    flex-direction: column;
  }

  .arend-form__form ,
  .arend-form__image {
    flex: none;
  }


}

@media (max-width: 576px) {

}


.button-images {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.button-images img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}


