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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f4f9fb;
  color: #333;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5rem;
  color: #154c79;
}

header p {
  font-size: 1.2rem;
  color: #555;
}

/* Section Styling */
section {
  margin-bottom: 40px;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

section h2 {
  font-size: 1.8rem;
  color: #1d6f42;
  margin-bottom: 15px;
}

/* Link List */
ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  margin: 12px 0;
}

ul li a {
  text-decoration: none;
  color: #0077cc;
  font-weight: 500;
  transition: color 0.2s ease;
}

ul li a:hover {
  color: #004a99;
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 60px;
  color: #888;
  font-size: 0.9rem;
}
