* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  line-height: 1.6;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
}

header {
  text-align: center;
  margin-bottom: 48px;
}

header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 1.1rem;
  color: #555;
}

.apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.app-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.app-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.app-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.app-card-link {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.app-card-link:hover {
  border-color: #999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.app-hero {
  text-align: center;
  margin-bottom: 36px;
}

.store-badge img {
  height: 44px;
  transition: opacity 0.2s;
}

.store-badge:hover img {
  opacity: 0.8;
}

.sms-consent {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 36px 32px;
  margin-bottom: 48px;
}

.sms-consent h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.consent-block {
  margin-bottom: 20px;
}

.consent-block:last-child {
  margin-bottom: 0;
}

.consent-block h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.consent-block p {
  font-size: 0.95rem;
  color: #444;
}

.consent-block a {
  color: #1a1a1a;
}

footer {
  text-align: center;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.divider {
  color: #ccc;
  margin: 0 12px;
}

.copyright {
  font-size: 0.85rem;
  color: #999;
}

@media (max-width: 540px) {
  .apps {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 40px 16px;
  }

  .sms-consent {
    padding: 24px 20px;
  }
}
