/* About 3: Image left, Text right */
.about3 {
  width: 100%;
  padding: 80px 40px;
  background-color: #d9d9d9;
}

.about3-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about3-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about3-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.about3-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about3-title {
  font-size: 64px;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.1;
  font-family: Arial, sans-serif;
}

.about3-text {
  font-size: 18px;
  color: #000;
  margin: 0;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

@media (max-width: 1024px) {
  .about3-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about3-image {
    order: 1;
  }

  .about3-content {
    order: 2;
  }

  .about3-title {
    font-size: 48px;
  }

  .about3-image img {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .about3 {
    padding: 60px 20px;
  }

  .about3-title {
    font-size: 36px;
  }

  .about3-text {
    font-size: 16px;
  }

  .about3-image img {
    max-width: 100%;
  }
}
