body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fff;
}

.hero {
  background-image: url("Hero.jpg.PNG");
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 60px;
}

nav {
  position: absolute;
  top: 20px;
  right: 30px;
}

nav a {
  color: #00bfff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.hero-text {
  background-color: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  max-width: 90%;
  margin: 0 auto;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
}

h2 {
  text-align: center;
  margin-top: 40px;
  font-size: 2rem;
}

.services {
  padding: 40px 20px;
  background: #f8f8f8;
}

.service-card {
  background: white;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.about {
  padding: 40px 20px;
  text-align: center;
}

.portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

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

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background: #007bff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}

footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

@media screen and (max-width: 600px) {
  .hero {
    height: 90vh;
  }
  h1 {
    font-size: 1.8rem;
  }
  nav {
    top: 15px;
    right: 15px;
  }
  .logo {
    height: 45px;
  }
}