body {
  font-family: Arial, sans-serif;
  margin: 0;
 background-color: #f4f8f9;
  color: #1c3b4c;
}

header {
  background-color: #003b4f;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 140px;
}

header img {
  height: 100px;
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

nav {
  background-color: #006b8f;
  text-align: center;
}

nav a {
  display: inline-block;
  padding: 14px 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  background-color: #004d66;
}

main {
  max-width: 1200px;
  margin: auto;
  padding: 40px 10px;
}

h1, h2 {
  color: #0b3c4c;
}

p {
  line-height: 1.6;
}

.quote {
  margin: 30px 0;
  padding: 15px 25px;
  background-color: #e3f2f6;
  border-left: 5px solid #1c90b4;
  font-style: italic;
}

.info {
  margin-top: 20px;
  font-size: 0.95em;
  color: #444;
}

.profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.profile img {
  width: 180px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.hero {
  text-align: center;
  padding: 40px 10px;
  background: linear-gradient(to bottom right, #e3f2f6, #f5f9fa);
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  color: #2c4d5c;
  margin-bottom: 30px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.service-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
}

.service-card h3 {
  margin: 0 0 10px;
  color: #003b4f;
}

@media (max-width: 600px) {
  main {
    padding: 20px 10px;
  }

  .profile {
    flex-direction: column;
    text-align: center;
  }

  .profile img {
    width: 140px 20px;
  }

  nav a {
    display: inline-block;
    padding: 12px;
  }

  .quote {
    padding: 15px;
  }

  .info {
    text-align: center;
  }

  header img {
    height: 100px;
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #006b8f;
    padding: 20px 0;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 15px 0;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  nav a:last-child {
    border-bottom: none;
  }

  nav a:hover {
    background-color: #004d66;
  }
}
