* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #004080;
  color: #fff;
  padding: 15px 20px;
}

.logo {
  font-size: 1.5rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a.active {
  border-bottom: 2px solid #fff;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to right, #004080, #0073e6);
  color: #fff;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
}

.content {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  background: #e6f2ff;
  margin: 10px 0;
  padding: 15px;
  border-left: 5px solid #004080;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input, .contact-form textarea {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
}

footer {
  text-align: center;
  padding: 15px;
  background: #004080;
  color: #fff;
  margin-top: 20px;
}

table a { color: #ff0000; text-decoration: none; font-weight: bold; }
table a:hover { color: #cc0000; }

table a {
  margin: 0 5px;
  font-weight: bold;
}

table a[href*="edit.php"] {
  color: #004080;
}

table a[href*="delete.php"] {
  color: #ff0000;
}
