body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #fafafa;
}  
.ta-hero {
  margin: 32px auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-content {
  flex: 1;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 18px;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f8f4;
  color: #383732;
}
h1 {
  font-size: 2.5rem;
  color: #4ab6ba;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #383732;
}

.hero-images {
  flex: 1;
  display: flex;
  gap: 12px;
}
.hero-images img {
  width: 160px;
  height: 180px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(60,60,66,.09);
}
@media (max-width: 900px) {
  .ta-hero {
    flex-direction: column;
    gap: 24px;
  }
  .hero-images {
    justify-content: flex-start;
  }
}
.back-btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .back-btn:hover {
    background-color: #1abc9c;}