.eta-container {
  display: flex;
  flex-wrap: wrap;
  background-color: green; /* Dark green */
  color: white;
  border-radius: 0px;
  overflow: hidden;
  max-width: 2000px;
  margin: 0px auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.eta-left {
  flex: 1;
  padding: 60px 40px;
}

.eta-left h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.eta-left p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.eta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: white;
  color: #006400;
  border: none;
  padding: 14px 30px;
  font-weight: bold;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #f0f0f0;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 14px 30px;
  font-weight: bold;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: #006400;
}

.icon {
  width: 20px;
  height: 20px;
}

.eta-link {
  margin-top: 30px;
}

.eta-link a {
  color: #d1e7dd;
  font-size: 14px;
  text-decoration: underline;
  transition: color 0.3s;
}

.eta-link a:hover {
  color: #ffffff;
}

.eta-right {
  flex: 1;
  min-height: 400px;
}

.eta-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
