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

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

/* Container */
.container {
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 40px 20px;
}

/* Header */
header {
  background-color: #0d1b2a;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.subtitle {
  font-size: 1.2em;
  color: #9fc0d3;
}

/* Sections */
section {
  padding: 40px 0;
}

.about, .services, .contact {
  background-color: white;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

h2 {
  margin-bottom: 20px;
  color: #0d1b2a;
}

ul {
  list-style: none;
  padding-left: 20px;
}

ul li {
  padding: 8px 0;
  font-size: 1.1em;
}

/* Contact */
.contact p.email a {
  font-weight: bold;
  color: #0077cc;
  text-decoration: none;
  font-size: 1.2em;
}

.contact p.email a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  background-color: #0d1b2a;
  color: white;
  padding: 20px 0;
  font-size: 0.9em;
}
