body {
  margin: 0;
  font-family: Poppins, Helvetica, sans-serif;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 120%;
}

.header {
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 24px;
}

.divider {
  width: 100%;
  border-bottom: 1px solid #ccc;
  margin-bottom: 48px;
}

.card {
  background: #fff;
  margin-top: 48px;
  max-width: 720px;
  width: 90%;
  padding: 48px;
  border-radius: 19px;
  box-shadow: 0 4.8px 14.4px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-bottom: 48px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.card-small {
  flex: 1 1 250px;
  max-width: 300px;
  background: #fff;
  padding: 24px;
  border-radius: 19px;
  box-shadow: 0 4.8px 14.4px rgba(0,0,0,0.2);
  text-align: center;
  margin-top: 24px;
  margin-bottom: 48px;
}

.title {
  font-size: 38.4px;
  font-weight: bold;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 21.6px;
  margin-bottom: 24px;
  color: #444;
}

.note {
  font-size: 18px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.note img {
  width: 24px;
  height: 24px;
}

.note-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  margin-bottom: 68px;
}

.button {
  display: inline-block;
  background: rgb(79, 220, 147);
  padding: 18px 48px;
  border-radius: 12px;
  box-shadow: 0 4.8px 14.4px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  margin-bottom: 24px;
}

.footer-section {
  width: 100%;
  background: #000;
  padding-top: 60px;
  padding-bottom: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
}

.footer-content {
  max-width: 900px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-content a,
.footer-content a:visited {
  color: #fff;
  text-decoration: none;
}

.fee-table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
  margin: 30px auto;
  color: #fff;
  font-size: 14px;
}


.fee-table th, .fee-table td {
  padding: 12px 10px;
  border: 1px solid #444;
  text-align: center;
}

.fee-table th {
  background: #111;
  font-weight: bold;
}

.footer-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

