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

/* SERVICES HERO (same style as about hero) */
.services-hero {
  height: 60vh;
  background: url('https://images.unsplash.com/photo-1555244162-803834f70033') center/cover no-repeat;
  position: relative;
}
.logo {
  height: 120px;
  width: auto;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* NAVBAR */
header {
  background: #000;
  color: #fff;
  padding: 15px 0;
}

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

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


.services-hero .overlay {
  background: rgba(0,0,0,0.6);
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* SERVICES SECTION */
.services {
  padding: 100px 0;
  text-align: center;
}

h1 {
  font-family: Georgia, serif;
}

h2 {
  font-family: Georgia, serif;
}

h3 {
  font-family: Georgia, serif;
}

a {
  font-family: Verdana, sans-serif;
}

p {
  font-family: Verdana, sans-serif;
}

/* REUSE GRID + CARD (same as About page) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* OPTIONAL: better text styling */
.card h3 {
  margin-bottom: 20px;
}

.card p {
  color: #555;
}

/* CTA */
.cta {
  background: black;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

/* FOOTER */
.footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}