/* Reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #222;
  font-weight: bold;
  font-size: 1.3rem;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

nav a:hover { color: #000; }

/* Hero */
.hero {
  background: #efefef;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #666;
}

.btn {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 4px;
}

.btn:hover { background: #444; }

/* Sections */
.section {
  /* background: #efefef;  */
  padding: 80px 20px;
}

/* CHANGE 2: darkened from #fafafa to #efefef */
.section.alt { background: #efefef; }

.section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

/* About */
.about {
  display: flex;
  align-items: flex-start; /* CHANGE 1: was center — now top-aligns text with image */
  gap: 40px;
  flex-wrap: wrap;
}

.about img {
  margin-top: 5.4rem;
  flex: 1;
  max-width: 500px;
  width: 100%;
  border-radius: 6px;
}

.about div { flex: 1; }

.about h2 { text-align: left; }

/* Service cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 6px;
  text-align: center;
}

.card h3 { margin-bottom: 10px; }

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
}
