.trade-hero {
  background: linear-gradient(to right, #a8edea, #fed6e3);
  text-align: center;
  padding: 8rem 2rem;
  color: #014d34;
}

.trade-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.trade-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.trade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
}

.trade-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trade-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.trade-card .icon {
  font-size: 2.5rem;
  color: #00b894;
  margin-bottom: 1rem;
}

.trade-card h3 {
  font-size: 1.4rem;
  color: #014d34;
  margin-bottom: 0.8rem;
}

.trade-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.cta {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #e6fff3;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #014d34;
}

.cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #444;
}

.btn-primary {
  background-color: #009b63;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #007a50;
}
