body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f7fafd;
  color: #222;
  min-height: 100vh;
}
header {
  text-align: center;
  margin-top: 40px;
}
.brand {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0076ff;
  letter-spacing: 2px;
}
.main-title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 40px 0 30px 0;
}
.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.button-group button {
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background: #0076ff;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.button-group button:hover {
  background: #005fcc;
}
.button_web {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.button_web button {
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background:orange;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.store-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  background: #222;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s;
}
.store-btn.appstore {
  background: #222;
}
.store-btn.googleplay {
  background: #34a853;
}
.store-btn:hover {
  opacity: 0.85;
}
@media (max-width: 600px) {
  .main-title {
    font-size: 1.2rem;
  }
  .brand {
    font-size: 1.5rem;
  }
  .button-group button, .store-btn {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
  .button-group {
    gap: 10px;
  }
  .store-buttons {
    gap: 8px;
  }
}

.privacy-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.privacy-btn {
    display: block;
    padding: 1rem;
    background-color: #007AFF;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s;
}

.privacy-btn:hover {
    background-color: #0056b3;
}