body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* LOGO */
.site-logo {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.site-logo img {
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* NAVIGATION */
nav ul {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 0;
  margin: 0 0 2rem 0;
  background: none;
  border: none;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 0;
  color: #1a1a1a;
  transition: color 0.2s;
  text-decoration: none;
}
nav ul li a:hover {
  color: #666;
  text-decoration: none;
}

/* MAIN CONTENT */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem 1rem;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 4rem 2rem;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.2rem;
  color: #444;
}

/* ABOUT PAGE FLEX LAYOUT */
.about-flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  margin: 3rem auto 0 auto;
  max-width: 700px;
}
.about-image img {
  display: block;
  max-width: 440px;
  height: auto;
  border-radius: 0;
}
.about-bio {
  max-width: 400px;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 0;
}
.about-bio p {
  margin-top: 0;
  padding-top: 0;
}

/* SERVICES PAGE STACKED LAYOUT - IMPROVED */
.service-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.service-row.reverse {
  flex-direction: row-reverse;
}
.service-img img {
  height: 340px;
  width: auto;
  object-fit: cover;
  border-radius: 0;
  display: block;
  margin: 0;
  min-width: 220px;
  max-width: 320px;
}
.service-list {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-list h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.service-list ul {
  margin: 0;
  padding-left: 1.05em;
  font-size: 0.90rem;
  list-style-type: disc;
}
.service-list ul li {
  margin-bottom: 0.07rem;
  font-size: 0.90rem;
  line-height: 1.4;
  position: relative;
  padding-left: 0.35em;
}
.service-list ul li::marker {
  font-size: 0.45em;
}

/* FORM STYLING */
form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
}
label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
button {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background-color: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}
button:hover {
  background-color: #333;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem 0;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}
footer img {
  filter: grayscale(100%);
  margin-top: 0.5rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-bio {
    max-width: 100%;
  }
  .service-row, .service-row.reverse {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  main {
    padding: 1rem 0.5rem 2rem 0.5rem;
  }
  .service-row, .service-row.reverse {
    flex-direction: column !important;
    align-items: center;
    gap: 1.2rem;
    max-width: 100%;
  }
  .service-img img {
    height: 180px;
    min-width: 0;
    max-width: 100%;
  }
  .service-list {
    min-width: 0;
    max-width: 100%;
  }
}
