/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

header .logo {
  width: 120px;
  margin-bottom: 10px;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
}

/* Section Styles */
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
 text-align: justify;
}

section h2 {
  color: #004080;
  margin-bottom: 15px;
  border-bottom: 2px solid #004080;
  display: inline-block;
  padding-bottom: 5px;
}

section p, section ul {
  margin-bottom: 20px;
  font-size: 1rem;
}

section ul li {
  margin-bottom: 8px;
}

/* Images inside sections */
section img {
  max-width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}

/* Contact */
#contact p {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}
