body {
  font-family: sans-serif;
  margin: 20px;
  line-height: 1.6;
  background-color: #8da0d9dc;
  color: #333;
  text-align: center;
}

header {
  text-align: center;
  padding: 20px;
  background-color: #005f73;
  color: white;
  margin-bottom: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #cfe2ff88;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

.container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 2.5rem;
  color: #222;
}

.header p {
  font-size: 1rem;
  color: #777;
}

.section {
  margin-bottom: 30px;
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #005f73;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 5px;
}

.section ul {
  list-style-type: none;
  padding-left: 0;
}

.section li {
  margin-bottom: 10px;
}

.row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .row {
    flex-direction: row;
  }

  .col {
    flex: 1;
  }
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

hr {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin: 20px 0;
}
