:root {
  --color-primary: #e6007b;
  --color-secondary: #2744a0;
  --color-background: #fff;
  --color-text: #121212;
  --color-beige: #fcf6f0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", Arial, sans-serif;
}

body {
  background: var(--color-background);
  color: var(--color-text);
  margin: 0 auto;
  padding: 0;
  max-width: 600px;
}

body.terms {
  max-width: 768px;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-beige);
  margin-bottom: 0;
  padding-bottom: 0;
}
.logo {
  width: 120px;
  margin-bottom: 8px;
}
.phone-mockup {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-mockup img {
  width: 100%;
  max-width: 300px;
}
main {
  background: #fff;
  box-shadow: none;
  padding: 0 0 24px 0;
}
.intro {
  text-align: center;
}
.brand {
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 8px 0;
}
.subtitle {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px 0;
}
.description {
  font-size: 16px;
  margin-bottom: 16px;
}
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-secondary);
  color: var(--color-background);
  font-size: 14px;
  font-weight: 500;
  flex: 1;
  border-radius: 12px;
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.2s;
  justify-content: center;
}
.btn.appstore,
.btn.playstore {
  background: var(--color-secondary);
}
.btn img {
  width: 24px;
  height: 24px;
}
.divider {
  width: 100%;
  display: block;
}
.intro,
.why,
.faq,
.download,
.social,
.footer {
  padding: 32px 24px;
}
.why h3,
.faq h3,
.download h3,
.social h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}
.reasons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reasons li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--color-text);
}
.reasons img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.faq-item p,
.faq-item li {
  font-size: 12px;
  line-height: 1.5;
}
body.terms .faq-item ul,
body.terms .faq-item p {
  margin-bottom: 15px;
}
body.terms .faq-item li {
  margin-left: 16px;
}
body.terms .faq-item p a {
  color: black;
}
.download .download-buttons {
  flex-direction: row;
  width: 100%;
}
.initiative {
  margin: 30px auto;
  text-align: center;
}
.initiative_images {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
  text-align: center;
  justify-content: center;
  margin-top: 30px;
}
.initiative_image {
  flex: 1;
  max-width: 33%;
}
.social-icons {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.social-icons a {
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
  transition: background 0.2s;
  padding: 0;
}
.social-icons img {
  width: 24px;
  height: 24px;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--color-primary);
  background: var(--color-background);
  padding-bottom: 24px;
  border-radius: 0 0 24px 24px;
  margin-top: 8px;
}
.footer a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  margin-left: 8px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

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