/* ===== Banner Section ===== */
.banner {
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.banner-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #25A3A6;
}

/* Buttons */
.banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* .banner-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
} */

/* .banner-buttons a.primary {
  background: #08334C;
  color: #fff;
}

.banner-buttons a.primary:hover {
  background: #25A3A6;
}

.banner-buttons a.secondary {
  background: #25A3A6;
  color: #fff;
}

.banner-buttons a.secondary:hover {
  background: #08334C;
}
*/
.banner-image img {
  max-width: 70%;
  height: auto;
} 

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .banner {
    flex-direction: column;
    text-align: center;
  }

  .banner-content {
    max-width: 100%;
  }

  .banner-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 1.8rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .banner-buttons a {
    width: 100%;
    justify-content: center;
  }
}
