body {
  font-family: Georgia, serif;
  background: #e5e2da;
  color: #111;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 40px 20px;
  background: #f3f1ec; /* match Contact section */
  color: #111;         /* ensure readability */
}

header h1 {
  font-size: 2rem;
  margin: 0;
}

header h2 {
  font-size: 1.4rem;
  margin-top: 10px;
}

.intro {
  text-align: center;
  margin-top: 30px;
}

.round-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}

.service {
  text-align: center;
  max-width: 180px;
}

.circle-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.contact {
  background: #f3f1ec;
  padding: 40px 20px;
  text-align: center;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

textarea {
  height: 100px;
}

button {
  background-color: #4caf50;
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.details {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 30px;
  justify-content: center;
}

.details .left,
.details .right {
  flex: 1 1 400px;
}

footer {
  text-align: center;
  padding: 20px;
  font-weight: bold;
}
