body {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  background-color: #f0f8f3;

  color: #297f8f;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

header {
  background-color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.logo {
  color: #3B664A;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: #333;
  font-weight: bold;

  color: #3B664A;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.content {
  text-align: center;
  padding: 10px;
}

h2 {
  color: #3B664A;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;

  width: 352px;
  height: 528px;
  flex-shrink: 0;
  aspect-ratio: 2/3;
}


.card img {
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
}

.cta-button {
  background-color: #f15a29;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);

  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: #999;
}