 /* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans Arabic', sans-serif;
}

/* HEADER */
.banner {
  background: #f2ca50;
  text-align: center;
  padding: 10px;
  font-size: 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  list-style: none;
  background: #fff;
  border-radius: 6px;
}

.navbar li {
  margin: 0 10px;
}

.logo {
  height: 100px;
}

/* MAIN */
.content-box, .ci, .da, .ta, .bo, .bi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.ba, .t, .productname {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
}

/* BUTTONS */
.btn, .sin, .z, .za {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #4CAF50;
  color: white;
  font-size: 16px;
}

.subscriptions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* FOOTER */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: #f1f1f1;
  border-top: 1px solid #ddd;
}

