/* =========================
   APP DOWNLOAD SECTION
========================= */

.apps-download {
  padding: 40px 20px;
  background: #ffffff;
}

.apps-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Liste */
.apps-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Kart */
.app-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3f3f3;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}

.app-card:hover {
  background: #eaeaea;
}

/* İkon */
.app-icon {
  width: 70px;
  height: 70px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
}

/* Yazı */
.app-text {
  flex: 1;
  margin-left: 15px;
  font-size: 16px;
  font-weight: 500;
}

/* Ok */
.app-arrow {
  font-size: 22px;
}