 body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9fafb;
    color: #111827;
  }

  /* Header */
.site-header {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box img {
  height: 40px;
}


.btn-heder {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apply-btn-heder {
  background: #000000;
  color: #fff;
}

.apply-btn-heder:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.call-btn-heder {
  background: #25D366;
  color: #fff;
}

.call-btn-heder:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media(max-width: 500px){
    .apply-btn-heder {
  display: none;
}
}


  .app-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
  }

  /* BANNER CTA */
  .app-banner {
    background: linear-gradient(135deg, #0f4c81, #1e3a5f);
    border-radius: 30px;
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: 40px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }

  @media(max-width: 500px){
    .app-banner {
    grid-template-columns: none;
  }
  }
  .banner-left h1 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .banner-left p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
  }

  .banner-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .btn {
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-play {
    background: #000;
    color: #fff;
  }

  .btn-apk {
    background: #fff;
    color: #000;
    border: 2px solid #000;
  }

  .btn:hover {
    transform: translateY(-3px) scale(1.03);
  }

  .banner-right img {
    width: 100%;
    max-width: 320px;
    display: block;
    margin: auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  }

  /* SCREENSHOTS */
  .screenshots {
    margin-top: 80px;
    text-align: center;
  }

  .screenshots h2 {
    font-size: 34px;
    margin-bottom: 10px;
  }

  .screenshots p {
    opacity: .7;
    margin-bottom: 40px;
  }

  .screen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }

  .screen-box {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: .3s ease;
  }

  .screen-box:hover {
    transform: translateY(-8px);
  }

  .screen-box img {
    width: 100%;
    border-radius: 18px;
  }

  /* APP DETAILS */
  .app-details {
    margin-top: 80px;
    background: #fff;
    padding: 50px 30px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  }

  .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }

  .detail-box {
    background: #f9fafb;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
  }

  .detail-box h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 5px;
  }

  .detail-box p {
    font-size: 16px;
    font-weight: 600;
  }

  /* WHO SECTION */
  .who-section {
    margin-top: 80px;
    padding: 60px 30px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  }

  .who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }

  .who-box {
    background: #f9fafb;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: .3s ease;
    border: 1px solid #e5e7eb;
  }

  .who-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  }

  .who-box img {
    width: 60px;
    margin-bottom: 12px;
  }

  @media(max-width: 768px){
    .banner-left h1 { font-size: 28px; }
  }

  /*------------------------------------------------- Footer style -------------------------------------*/
.premium-footer {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  border-left: 4px solid #22c55e;
  padding-left: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: hsl(0, 0%, 100%);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.social-icons img {
  width: 25px;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.store-links img {
  width: 130px;
  margin-right: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.footer-location {
  text-align: center;
  margin-top: 30px;
  color: #94a3b8;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  border-top: 1px solid #1e293b;
  margin-top: 15px;
  color: #64748b;
}
