body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f7f8fc;
  color: #333;
}

header {
  background: #0C155C;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

header h1 {
  margin-bottom: 10px;
  font-size: 2em;
}

.store-section {
  text-align: center;
  padding: 50px 20px;
}

.store-section h2 {
  color: #0C155C;
  margin-bottom: 25px;
  font-size: 1.8em;
  border-bottom: 3px solid #0C155C;
  display: inline-block;
  padding-bottom: 8px;
}

.app-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card img {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.app-card span {
  margin-top: 10px;
  font-weight: 500;
  font-size: 0.95em;
}

.app-card:hover {
  transform: translateY(-8px);
}

footer {
  background: #0C155C;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  font-size: 0.9em;
}
