/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
body {
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
  padding: 20px;
}
/* Section Styling */
section {
  padding: 40px 0;
  max-width: 800px;
  margin: auto;
  border-bottom: 1px solid #ddd;
}
#hero {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #003049;
  color: white;
}
#hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}
#hero p {
  font-size: 1.3em;
  margin-bottom: 20px;
}
#hero a {
  background: #f77f00;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
h2 {
  color: #003049;
  margin-bottom: 10px;
}
ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}
a {
  color: #f77f00;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* Contact Styling */
#contact p {
  margin-bottom: 8px;
}
