.about-us {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.about-us__title {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 40px;
  text-align: left;
}
.about-us__title span {
  color: #888;
}

.about-us__intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}


.about-us__left {
  flex: 1 1 500px;
  min-width: 350px;
}
.about-us__images {
  margin-bottom: 20px;
}
.about-us__images img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 8px;
  object-fit: cover;
}

.about-us__text {
  margin: 40px 0;
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

.about-us__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: #0d2239;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.about-us__btn:hover {
  background: #0b1d31;
}

.about-us__right {
  flex: 1 1 600px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.about-us__column {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.about-us__column img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}


.logo-carousel {
  width: 100%;
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}
.logo-carousel__track {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll 25s linear infinite;
}
.logo-carousel__track img {
  margin-right: 2rem;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


@media (max-width: 1024px) {
  .about-us__intro {
    flex-direction: column;
    gap: 30px;
  }
  .about-us__left,
  .about-us__right {
    flex: 1 1 100%;
    text-align: center;
  }
  .about-us__text {
    margin: 20px 0;
    font-size: 1.1rem;
  }
  .about-us__btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  .about-us__title {
    font-size: 3rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-us {
    padding: 80px 20px;
  }
  .about-us__title {
    font-size: 2.5rem;
  }
  .about-us__text {
    font-size: 1rem;
	  text-align: left;
	  padding: 15px;
  }
  .about-us__images img {
    width: 50px;
    height: 50px;
  }
  .about-us__btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-us {
    padding: 60px 15px;
  }
  .about-us__title {
    font-size: 2rem;
  }
  .about-us__btn {
    font-size: 0.9rem;
    padding: 12px;
  }
  .logo-carousel__track img {
    height: 50px;
  }
}
