/* GLOBAL SETTINGS */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fc;
  color: #333;
  line-height: 1.6;
}

a {
  color: #0074cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* HEADER SECTION */
header {
  background-color: #0074cc;
  color: white;
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header img {
  height: 90px;
  max-width: 250px;
  object-fit: contain;
  margin-bottom: 20px;
}

header h1 {
  font-size: 36px;
  margin: 10px 0;
}

header p {
  font-size: 18px;
  max-width: 800px;
}

/* SERVICES SECTION */
section#services {
  padding: 60px 20px;
  background-color: white;
  text-align: center;
}

section#services h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0074cc;
}

.service {
  margin-bottom: 40px;
}

.service h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.service p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
}

/* FOOTER */
footer {
  background-color: #003d66;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* CONTACT FORM (If Any) */
form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

form button {
  background-color: #0074cc;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

form button:hover {
  background-color: #005fa3;
}
