*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Century Gothic', sans-serif;
  font-weight: bold;
}

body {
  background-color: #ffffff;
  color: #222;
  padding: 20px;
}

.wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subheading {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.logo {
  width: 160px;
  height: 200px;
}

.title {
  line-height: 1.3;
  font-size: 2rem;
  margin-bottom: 10px;
}

.title-blue {
  display: block;
  color: #2f60f2;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.title-black {
  display: block;
  color: #222;
  font-size: 2.4rem;
}

.subtitle {
  font-size: 1rem;
  color: #555;
  margin-top: 8px;
  margin-bottom: 28px;
}

.button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.btn {
  padding: 9px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease-in-out;
}

.primary {
  background-color: #2563eb;
  color: white;
}

.secondary {
  background-color: #aaaaaa;
  color: black;
}

.ghost {
  background-color: transparent;
  border: 1px solid #ccc;
  color: #333;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-box {
  display: flex;
  gap: 12px;
  background-color: #f3f4f6;
  padding: 14px;
  border-radius: 16px;
  align-items: flex-start;
  text-align: left;
}

.feature-box .emoji {
  font-size: 1.8rem;
  margin-top: 2px;
}

.feature-box h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #222;
}

.feature-box p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.4;
}