:root {
  --primary-blue: #055ade;
  --dark-blue: #044bb8;
  --light-blue-bg: #dbeafe;
  --light-blue-bg-2: #e5f3ff;
  --text-dark: #111827;
  --text-light: #31353b;
  --background-light-gray: #f9fafb;
  --white: #ffffff;
  --black: #000000;
  --border-color: #e9eaeb;
}

body {
  margin: 0;
  font-family: 'Inter', 'SF Compact Display', sans-serif;
  background: linear-gradient(180deg, #eff6ff 0%, var(--white) 100%);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main-container {
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, p {
  margin: 0;
}

.section-padding {
  padding: 48px 16px 80px 16px;
}

.text-center {
  text-align: center;
}

.store-buttons-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--black);
  color: var(--white);
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  flex-grow: 1;
  max-width: 159px;
}

.store-button img {
  height: 24px;
}

@media (min-width: 768px) {
  .main-container {
    max-width: 1200px;
  }
  .section-padding {
    padding: 80px 32px 100px 32px;
  }
  .store-button {
    flex-grow: 0;
  }
}