body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #1C3F70;
  color: #fff;
}
header {
  text-align: center;
  padding: 100px 20px;
}
header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
/* Legacy nav styles — do not apply to the shared site navbar (.navbar) */
nav:not(.navbar) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
}
nav:not(.navbar) a {
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  color: #000;
  min-width: max-content;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.dropdown-content a {
  color: #000;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  font-size: 0.8125rem;
  white-space: nowrap;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.features {
  background: #fff;
  color: #000;
  padding: 50px 20px;
  text-align: center;
}
.features h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #007AFF;
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}
.card i {
  font-size: 2rem;
  color: #007AFF;
  margin-bottom: 10px;
}
.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #333;
}
.card p {
  font-size: 0.95rem;
  color: #555;
}
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.store-buttons img {
  width: 150px;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
}
footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.9rem;
}
a.button {
  background: #ff4b2b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
