:root {
  --yellow: #F4C430;
  --dark: #2B2B2B;
  --light: #F7F7F7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: var(--dark);
  line-height: 1.6;
}

section {
  padding: 70px 8%;
}

h1, h2 {
  font-weight: 700;
}

h1 span {
  color: var(--yellow);
}

.subtitle {
  font-weight: 600;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--yellow);
  margin: 20px 0;
}

.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/hero.jpg") center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 900px;
}

.tagline {
  margin-top: 15px;
  color: var(--yellow);
  font-weight: 700;
}

.light {
  background: var(--light);
}

.grid, .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card, .feature {
  background: white;
  padding: 25px;
  border-left: 6px solid var(--yellow);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.facility {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/hero.jpg") center/cover no-repeat;
  color: white;
}

.contact {
  background: var(--dark);
  color: white;
}

.contact h2 {
  color: var(--yellow);
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
}

button {
  background: var(--yellow);
  border: none;
  padding: 14px 28px;
  font-weight: 700;
  cursor: pointer;
}

.address {
  margin-top: 30px;
}

footer {
  background: black;
  color: #ccc;
  text-align: center;
  padding: 20px;
}
