body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

/* NAVBAR */
.navbar {
  background: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 20px;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}
.nav-logo {
  max-width: 120px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li {
  display: inline;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #ccc;
}

.section {
  padding: 60px 20px;
  text-align: center;
}
.section.black {
  background: #000;
  color: #fff;
}
.section.white {
  background: #fff;
  color: #000;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}
.hero-background {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  filter: brightness(0.5);
}
.hero-background img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero .overlay {
  position: relative;
  z-index: 1;
  background-color: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
}

h1 { font-size: 3rem; margin: 0; }
h2 { font-size: 2rem; margin-bottom: 20px; }

.btn {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 15px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}
.btn:hover {
  background: #ccc;
}

.bio-container, .bio-approach-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.bio-photo, .bio-approach-photo {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.bio-text {
  max-width: 600px;
  margin: auto;
}

.service-card, .testimonial-card {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  margin: 15px auto;
  padding: 20px;
  max-width: 600px;
  transition: transform 0.3s ease;
}
.section.white .service-card {
  background: #f4f4f4;
}
.service-card:hover, .testimonial-card:hover {
  transform: scale(1.03);
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.testimonial-card {
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  font-style: italic;
}
.testimonial-card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-style: normal;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}
input, textarea, button {
  padding: 10px;
  margin: 8px 0;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}
button {
  background: #000;
  color: #fff;
  cursor: pointer;
}
button:hover {
  background: #444;
}

#form-status {
  margin-top: 10px;
  font-weight: bold;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .bio-container, .bio-approach-container {
    flex-direction: column;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  h1 { font-size: 2rem; }
}
