html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #f0f2f5;
}

.download-page {
  display: flex;
  justify-content: center;   /* Her iki bölümü ortada konumlandır */
  align-items: center;       /* Dikey hizalama */
  gap: 4rem;                 /* İki bölüm arasındaki boşluğu ayarla */
  min-height: 100vh;
  box-sizing: border-box;
  padding: 2rem;
}

.left-section, .right-section {
  /* flex: 1; kaldırıldı, böylece bölümler içeriğe göre boyutlanır */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.content-box {
  background: #f0f2f5;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  max-width: 300px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.content-box h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #1e2a3f;
  font-size: 1.4rem;
}

.qr-wrapper {
  margin-bottom: 1.5rem;
}

.qr-wrapper img {
  width: 120px;
  height: 120px;
}

.divider {
  position: relative;
  margin: 1.5rem 0;
  text-align: center;
}

.divider span {
  background: #f0f2f5;
  padding: 0 1rem;
  color: #000;
  font-weight: bold;
}

.divider::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ddd;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}

.store-buttons a {
  display: inline-block;
  margin: 0.5rem;
}

.store-buttons img {
  height: 40px;
  object-fit: contain;
}

.branding-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 2rem;
  z-index: 1;
}

.branding-bg img {
  opacity: 0.05;
  max-height: 200px;
  object-fit: contain;
}

.phone-mockup {
  position: relative;
  width: 250px;   
  height: 480px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 10px 10px 50px rgba(0,0,0,0.5); /* Sağ ve aşağı yönlü gölge */
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.logo-inside {
  z-index: 1;
}

.logo-inside img {
  max-width: 100px;
}

@media (max-width: 992px) {
  .download-page {
    flex-direction: column;
    padding: 1rem;
  }

  .left-section, .right-section {
    width: 100%;
    flex: none;
    margin-bottom: 2rem;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }
}