.factory-section {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh;

  overflow: hidden;

}

.factory-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end; /* Đẩy nội dung về phía phải */
  padding: 40px;
  padding-right: 55px;
}

.factory-content {
  max-width: 580px;
  color: #fff;
  text-align:left; /* Căn chữ về phải */
}

.factory-content h2 {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 16px;
}

.factory-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.factory-button {
  display: inline-block;
  background-color: transparent;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: 1px solid white;
}

.factory-button:hover {
 background-color: white;
  color: #96422F;
}
@media (max-width: 768px) {
  .factory-content h2 {
    font-size: 36px;
  }

  .factory-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .factory-content h2 {
    font-size: 30px;
  }

  .factory-content p {
    font-size: 13px;
  }
}
