* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.navbar {
  position: fixed;
  width: 100%;
  background: white;
  padding: 20px 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #222;
}

.logo {
  width: 140px;
}

.hero {
  height: 100vh;
  background: url('../assets/hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}

.hero-content {
  position: relative;
  color: white;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  max-width: 700px;
}

.hero p {
  margin: 20px 0;
  font-size: 1.2rem;
}

.btn, .btn-outline {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

.btn {
  background: #0a84ff;
  color: white;
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.trust-bar {
  background: #f8f8f8;
  padding: 25px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: space-around;
}

.services {
  padding: 100px 0;
}

.cards {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,.08);
  border-radius: 12px;
  overflow: hidden;
}

.card img {
  width: 100%;
}

.card h3, .card p {
  padding: 20px;
}

.about, .schedule, .contact {
  padding: 100px 0;
}

.reviews {
  background: #f4f4f4;
  padding: 100px 0;
}

.review-grid {
  display: flex;
  gap: 20px;
}

.review {
  background: white;
  padding: 30px;
  border-radius: 12px;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px;
}
