/* Reset default margins and fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Main content container */
.container {
  max-width: 960px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1.main-title {
  text-align: center;
  color: #004080;
  font-size: 2rem;
  margin-bottom: 20px;
}

h2 {
  color: #2c3e50;
  margin-top: 30px;
  margin-bottom: 10px;
}

h3, h4 {
  color: #555;
  margin-bottom: 5px;
  text-align: center;
}

/* Paragraphs */
p {
  margin-bottom: 15px;
  text-align: justify;
}

/* Table styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table, th, td {
  border: 1px solid #ccc;
}

th, td {
  padding: 12px;
  text-align: left;
}

th {
  background-color: #004080;
  color: white;
}

td {
  background-color: #f1f1f1;
}

/* Link styling */
a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #004080;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
}

a:hover {
  background-color: #0066cc;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .container {
    padding: 20px;
  }

  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }

  tr {
    margin-bottom: 15px;
  }

  th {
    background-color: #0066cc;
    text-align: center;
  }
}
