#about-us {
  background-color: #f4f4f9;
  padding: 80px 0;
  font-family: 'Arial', sans-serif;
}

.container {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

.nav-buttons {
  margin-bottom: 40px;
}

.nav-buttons a {
  text-decoration: none;
  margin-right: 20px;
}

.nav-buttons button {
  background-color: #ba0000;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-left: 2
}

.nav-buttons button:hover {
  background-color: #000000;
  transform: translateY(-3px);
}

.section-title {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  transition: transform 0.3s ease;
}

.about-content:hover {
  transform: scale(1.03);
}

.about-images {
  width: 45%;
  display: flex;
  justify-content: space-between;
}

.about-image-item {
  width: 48%;
  transition: transform 0.3s ease;
}

.about-image-item img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-description {
  width: 45%;
  text-align: left;
  color: #555;
  line-height: 1.6;
}

.about-description p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #555;
}

.about-description p:last-child {
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-images {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-description {
    width: 100%;
    padding: 0 15px;
  }
}
