:root {
  --bg: #FDF1E5;
  --text: #000000;
  --muted: #FB5D00;
  --primary: #EA7100;
  --secondary: #FB5D00;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--bg);
}

.logo {
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  letter-spacing: 1px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  height: 32px;
  width: auto;
}

.lang-switch button {
  margin-left: 8px;
  background: var(--bg);
  border: 1.5px solid var(--secondary);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-switch button:hover {
  background: var(--secondary);
  color: #fff;
}
.lang-switch button.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 64px 48px 32px 48px;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(234,113,0,0.08);
}

.hero-text h1 {
  font-size: 48px;
  color: #000000;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-align: center;
}

.hero-text h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}

.hero-text p {
  font-size: 20px;
  color: #000000;
  margin-bottom: 32px;
  text-align: center;
}

.hero-images {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hero-images img {
  width: 100%;
  max-width: 200px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(234,113,0,0.10);
  background: #fff;
  transition: transform 0.2s;
}
.hero-images img:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 24px rgba(251,93,0,0.18);
}

.hero .cta {
  justify-content: center;
}

.explanation {
  padding: 48px 24px;
  max-width: 900px;
  margin: 32px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(234,113,0,0.07);
  text-align: center;
}

.explanation h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: #000000;
}

.explanation h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.explanation ul {
  padding-left: 24px;
  margin-bottom: 24px;
  display: inline-block;
  list-style: none;
}

.explanation li {
  margin-bottom: 14px;
  font-size: 19px;
  color: #000000;
  font-weight: 400;
}

.explanation li::before {
  content: "✅ ";
  margin-right: 8px;
}

.closing {
  font-size: 20px;
  margin-bottom: 32px;
  color: #000000;
  font-weight: 400;
}

.cta {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.explanation .cta {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: inherit;
  font-size: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transform: scale(1.02);
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn img {
  width: 20px;
  height: 20px;
}

.btn-appstore,
.btn-googleplay {
  width: 200px;
  justify-content: center;
}

.gallery {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}
.gallery img {
  max-width: 160px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(234,113,0,0.10);
  background: #fff;
  transition: transform 0.2s;
}
.gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 24px rgba(251,93,0,0.18);
}

@media (max-width: 768px) {
  .topbar {
    padding: 12px 16px;
  }

  .logo {
    font-size: 20px;
  }

  .logo-image {
    height: 28px;
  }

  .lang-switch button {
    padding: 6px 10px;
    font-size: 12px;
    margin-left: 6px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 24px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero-text h3 {
    font-size: 18px;
  }

  .hero-images img {
    max-width: 140px;
  }

  .explanation {
    padding: 32px 16px;
    margin: 24px 16px;
  }

  .explanation h2 {
    font-size: 28px;
  }

  .explanation ul {
    padding-left: 20px;
  }

  .explanation li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .closing {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .btn {
    padding: 12px 16px;
    font-size: 14px;
    width: 160px;
  }

  .btn-appstore,
  .btn-googleplay {
    width: auto;
    min-width: 160px;
  }

  .btn img {
    width: 16px;
    height: 16px;
  }

  .gallery img {
    max-width: 120px;
  }

  .cta {
    gap: 12px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 10px 12px;
  }

  .logo {
    font-size: 18px;
  }

  .logo-image {
    height: 24px;
  }

  .logo-container {
    gap: 8px;
  }

  .lang-switch button {
    padding: 5px 8px;
    font-size: 11px;
    margin-left: 4px;
  }

  .hero {
    padding: 20px 12px;
    gap: 16px;
  }

  .hero-text h1 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .hero-text p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-text h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .hero-images {
    gap: 12px;
  }

  .hero-images img {
    max-width: 100px;
  }

  .explanation {
    padding: 20px 12px;
    margin: 16px 12px;
  }

  .explanation h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .explanation ul {
    padding-left: 16px;
    margin-bottom: 16px;
  }

  .explanation li {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .closing {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .explanation h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .btn {
    padding: 10px 12px;
    font-size: 13px;
    gap: 6px;
    width: 100%;
    max-width: 160px;
  }

  .btn-appstore,
  .btn-googleplay {
    width: 100%;
    max-width: 160px;
  }

  .cta {
    gap: 10px;
    margin-bottom: 16px;
  }

  .gallery {
    gap: 8px;
    margin-top: 16px;
  }

  .gallery img {
    max-width: 90px;
  }
}

.footer {
  background: var(--bg);
  padding: 24px;
  text-align: center;
  margin-top: 48px;
}

.footer p {
  font-size: 14px;
  color: gray;
  margin: 0;
  font-weight: 600;
}

.footer-link {
  color: gray;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer {
    padding: 16px;
    margin-top: 32px;
  }

  .footer p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 12px;
    margin-top: 24px;
  }

  .footer p {
    font-size: 11px;
  }
}

.policies-container {
    max-width: 900px;
    margin: 48px auto;
    padding: 48px 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(234, 113, 0, 0.07);
}

.policies-container h1 {
    font-size: 42px;
    color: #000000;
    margin-bottom: 12px;
    text-align: center;
}

.policies-container .subtitle {
    text-align: center;
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 48px;
    font-weight: 600;
}

.policy-section {
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.policy-section p {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 400;
}

.policy-section ul {
    margin: 12px 0 12px 24px;
    padding: 0;
    list-style: none;
}

.policy-section li {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 8px;
    font-weight: 400;
    padding-left: 24px;
    position: relative;
}

.policy-section li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .policies-container {
        padding: 32px 16px;
        margin: 24px 16px;
    }

    .policies-container h1 {
        font-size: 32px;
    }

    .policy-section h2 {
        font-size: 20px;
    }

    .policy-section p,
    .policy-section li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .policies-container {
        padding: 20px 12px;
        margin: 16px 12px;
    }

    .policies-container h1 {
        font-size: 24px;
    }

    .policy-section {
        margin-bottom: 24px;
    }

    .policy-section h2 {
        font-size: 18px;
    }

    .policy-section p,
    .policy-section li {
        font-size: 14px;
    }
}