* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #aacfe3;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: #141b7a;
}

.section-title {
  font-size: 26px;
  margin: 30px 0 15px;
  color: #ff0000;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  background-color: #141b7a;
  width: 300px;
  padding: 25px;
  border-radius: 15px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card h2 {
  font-size: 22px;
  margin-bottom: 15px;
  text-align: center;
}

.card ul {
  list-style: none;
}

.card ul li {
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
  padding: 10px;
  border-radius: 8px;
  font-size: 15px;
}
