@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');


body {
  margin: 0;
  padding: 0;
  font-family: 'Cairo', 'Almarai', Arial, sans-serif;
  background: linear-gradient(135deg, #1e6bb8 0%, #3fa7d6 100%);
  direction: rtl;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100vh;
}

.logo-text {
  font-family: 'Cairo', 'Almarai', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  background: none;
  margin-left: 10px;
}

header {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.logo {
  height: 50px;
}

.be-merchant {
  color: #fff;
  font-size: 2.2rem;
  margin-top: 10px;
  margin-right: 10px;
}

main {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  width: 100%;
  gap: 40px;
  min-height: 500px;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 320px;
  max-width: 480px;
  margin-top: 40px;
}

main h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.desc {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.download-btn {
  display: inline-block;
  background: #2176ae;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 10px;
  margin-bottom: 18px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.download-btn:hover {
  background: #1e5a8a;
}

.store-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.store-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  background: #fff;
  padding: 4px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.phone-mockup {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
}

.phone-mockup img {
  max-width: 350px;
  width: 100%;
  border-radius: 32px;
}

@media (max-width: 900px) {
  main {
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
  }
  .main-content {
    align-items: center;
    text-align: center;
    margin-top: 0;
  }
  .phone-mockup {
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
  }
} 