body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #0d0d0d;
  color: white;
}

.container {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  justify-content: space-between;
}

.left-section {
  flex: 1 1 40%;
  max-width: 600px;
  padding-right: 40px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bold {
  color: #fff;
}

.about-title {
  font-size: 48px;
  font-weight: bold;
  margin: 0 0 20px;
  color: white;
}

.highlight::before {
  content: "■ ";
  color: #ff2c55;
}

.description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ddd;
}

.right-section {
  flex: 1 1 50%;
}

.who-we {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }

  .right-section, .left-section {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-title,
  .who-we {
    font-size: 36px;
  }
}
