body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFFCF2;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.background-logos {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
}
.container {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
  padding: 24px 12px 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.logo {
  max-width: 320px;
  margin: 4px 0;
}
.logo-hvc {
  width: 380px;
}
.logo-arabic {
  width: 120px;
}
.headline-ar {
  color: #B23B3B;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 8px 0 2px 0;
  text-align: center;
  letter-spacing: 1px;
}
.headline-en {
  color: #1A3557;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-align: center;
  letter-spacing: 1px;
}
.app-icon-section {
  margin: 18px 0 18px 0;
}
.app-icon {
  width: 140px;
  height: 140px;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  background: #fffbe6;
  object-fit: cover;
}
.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: center;
  margin: 18px 0 12px 0;
}
.store-btn img {
  width: 260px;
  max-width: 90vw;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.web-link {
  margin: 18px 0 18px 0;
  font-size: 1.1rem;
  color: #1A1A3B;
  text-align: center;
}
.web-url {
  color: #23236A;
  font-weight: 700;
  text-decoration: none;
}
.partners-social {
  margin-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  align-items: center;
}
.partner-logo {
  height: 32px;
  width: auto;
}
.social-icons {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.social-icons img {
  width: 32px;
  height: 32px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.social-icons img:hover {
  opacity: 1;
}
@media (min-width: 600px) {
  .container {
    padding: 36px 0 0 0;
  }
  .app-icon {
    width: 180px;
    height: 180px;
  }
  .store-btn img {
    width: 320px;
  }
} 