@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.section-header {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.section-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-top: -60px;
}

.cards-section {
  padding: 40px 5%;
}

.card-row {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: center;
}

.card-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
}

.card-text {
  flex: 1;
}

.card-text h3 {
  margin-bottom: 10px;
}

.card-text p {
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .card-row {
    flex-direction: column;
    text-align: center;
  }

  .card-image img {
    max-width: 100%;
  }
}
