:root {
  --primary-color: #FFD700;
  --background-dark: #000000;
  --background-light: #ffffff;
  --text-light: #ffffff;
  --text-dark: #000000;
  --font-main: 'Montserrat', sans-serif;
}

.about-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 2rem;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
  font-family: var(--font-main);
}

.hero-img {
  width: 100%;
  aspect-ratio: 16 / 4;
  object-fit: cover;
  display: block;
  margin-bottom: 2rem;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-top: 1rem;
}

.about-hero p {
  max-width: 1200px;
  margin: 1rem auto;
  font-size: 1.1rem;
}

.about-text {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #000;
}

.about-welcome-wrapper {
  background-color: #fff;
  padding: 3rem 1rem;
  color: #000;
}

.about-welcome {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.commitment-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}

.commitment-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.commitment-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  background-color: rgba(255, 255, 255, 0.95);
}

/* Mobile stacking for commitment cards */
@media (max-width: 768px) {
  .commitment-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 0 1rem;
  }

  .commitment-card {
    width: 100%;
    max-width: 500px;
    text-align: center;
  }
}

.about-text-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: var(--text-light);
  font-family: var(--font-main);
  line-height: 1.6;
  font-family: var(--font-main);
}

.about-welcome h3 {
  color: var(--text-dark);
}

