@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  background-color: #1b3231;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
}

.card {
  background: #fff;
  border: 2px solid #003366;
  border-radius: 16px;
  max-width: 800px;
  margin: 48px auto;
  padding: 32px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: center;
}

h1, h2 {
  text-align: center;
}

h1 {
  font-size: 56px;
  margin-top: 0;
  margin-bottom: 0px;
  color: #003366; /* dark blue */
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  margin-top: 0px;
  margin-bottom: 8px; /* reduce space below h2 */
  color: #696969; /* light gray */
  line-height: 1.3;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 0px;
  color: #333333; /* dark gray */
}