/* ==== Reset & Base ==== */
* {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #111;
  background-color: #fff;
}
a {
  color: #007acc;
  text-decoration: none;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}
h2 { margin-bottom: 20px; color: #222; }

/* ==== Header / Hero ==== */
#hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('header-bg.jpg') center center / cover no-repeat;
  text-align: center;
  color: white;
  position: relative;
}
#hero h1 {
  font-size: 2.8rem; margin-bottom: 0.5rem;
}
#hero .subtitle {
  font-size: 1.4rem; color: #e5e5e5; margin-bottom: 1.5rem;
}
#hero .cta {
  padding: 12px 24px;
  background-color: #007acc;
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
}

/* ==== About Section ==== */
#about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.about-text { flex: 1 1 300px; padding: 20px; }
.about-image {
  flex: 1 1 250px;
  padding: 20px;
  text-align: center;
}
.about-image img {
  max-width: 200px;
  width: 100%;
  border-radius: 50%;
}

/* ==== Services ==== */
.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.services-list h3 {
  margin-bottom: 8px;
  color: #007acc;
}

/* ==== Contact ==== */
#contact {
  text-align: center;
  padding-bottom: 80px;
}
#contact a {
  display: inline-block;
  margin-top: 8px;
}

/* ==== Footer ==== */
footer {
  text-align: center;
  padding: 20px;
  background: #fafafa;
  font-size: 0.9rem;
  color: #666;
}

/* ==== Responsive Adjustments ==== */
@media (max-width: 600px) {
  #about { flex-direction: column; }
  #hero h1 { font-size: 2.2rem; }
}
