* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fff;
  color: #1f2937;
  line-height: 1.7;
}

/* HERO */
.hero {
  padding: 90px 20px 70px;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.527)), url("hero_about.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #d09c00;
}

.hero p {
  max-width: 750px;
  margin: auto;
  font-size: 18px;
  opacity: 0.95;
  color: white;
}

/* SECTIONS */
section {
  padding: 70px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  margin-bottom: 25px;
}

.section-title h2 {
  font-size: 32px;
  color: #d09c00;
  margin-bottom: 10px;
}

.section-title p {
  max-width: 800px;
  color: #555;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-top: 0;
  color: #d09c00;
}

/* TRUST STRIP */
.trust {
  background: #fffaf0;
  border-left: 6px solid #d09c00;
  padding: 40px;
  border-radius: 10px;
  margin-top: 40px;
}

/* VISION */
.vision {
  background: #1f2937;
  color: #f9fafb;
  text-align: center;
}

.vision h2 {
  color: #d09c00;
}

/* FOOTER */
footer {
  background: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 25px;
  font-size: 14px;
}
