* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #0057b8;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: #e5f0ff;
}

.section {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: #0057b8;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

button:hover {
  background: #0041a3;
}

footer {
  text-align: center;
  padding: 20px;
  background: #0057b8;
  color: white;
  margin-top: 40px;
}

/* Contact section email link styling */
#contact p {
  text-align: center;
  font-size: 1.05em;
  margin-top: 10px;
  color: #222;
}

#contact a {
  color: #0057b8;
  text-decoration: none;
  background: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #0057b8;
  display: inline-block;
  transition: background 0.18s ease, color 0.18s ease, transform 0.08s ease;
}

#contact a:hover,
#contact a:focus {
  background: #0057b8;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Small responsive tweaks */
@media (max-width: 600px) {
  header {
    padding: 15px 20px;
  }
  .hero {
    padding: 40px 10px;
  }
}