.about {
  background-color: #fefefe;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-left {
  max-width: 45%;
}

.about-subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 10px;
}

.about-title {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 20px;
  color: #000;
}

.about-text {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.about-button {
  background-color: #000;
  color: #fff;
  font-size: 16px;
  padding: 14px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(255, 80, 80, 0.15);
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.about-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(255, 80, 80, 0.25);
}

.about-right {
  width: 55%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 40px;
}

.about-right img {
  width: 100%;
  height: fit-content;
  border-radius: 40px;
  object-fit: contain;
  max-height: 600px;
}

@media (max-width: 1024px) {
  .about {
    flex-direction: column;
    gap: 40px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .about-right {
    width: 100%;
    height: auto;
    justify-content: center;
  }

  .about-left {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 40px 30px;
  }

  .about-right img {
    max-height: 500px;
    border-radius: 20px;
  }
  .about-subtitle {
    font-size: 12px;
  }
  .about-title {
    font-size: 24px;
  }
}

@media (max-width: 568px) {
  .about {
    padding: 40px 18px;
  }
}
