/* ====== RESET ====== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Vesper Libre", "Inter", sans-serif;
}

body {
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

/* ====== HEADER ====== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 120px;
  height: auto;
}

.menu {
  display: flex;
  gap: 2rem;
}

.menu a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  position: relative;
}

.menu a:hover {
  color: #71b247;
}

.buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.signup {
  background: #71b247;
  color: #fff;
  border: none;
}

.signup:hover {
  background: #5c943b;
}

.signin {
  background: #fff;
  color: #71b247;
  border: 1px solid #71b247;
}

.signin:hover {
  background: #71b247;
  color: #fff;
}

/* ====== MAIN TERMS ====== */
.terms-container {
  max-width: 1300px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.update-date {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.intro {
  text-align: center;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  margin: 0 auto 2rem auto;
  max-width: 1000px;
}

/* ====== SECTION CARDS ====== */
.section-card {
  background: rgba(3, 159, 200, 0.05);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}

.section-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-card p {
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.section-card ul {
  list-style: none;
  padding-left: 1.2rem;
}

.section-card li {
  font-size: 17px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  margin: 0.6rem 0;
  position: relative;
  line-height: 1.6;
  padding-left: 0.8rem;
}

.section-card li::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 0.55em; /* 🔹 عدّلنا هون بدل 10px حتى تطلع بمحاذاة السطر */
  width: 8px;
  height: 8px;
  background: #d9d9d9;
  border-radius: 50%;
}


/* ====== RESPONSIVE ====== */

/* --- Tablets --- */
@media (max-width: 992px) {
  .navbar-container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
  }

  .buttons {
    justify-content: center;
    width: 100%;
  }

  .terms-container {
    padding: 0 2rem;
  }

  .section-card {
    padding: 1.5rem;
  }

  .title {
    font-size: 32px;
  }
}

/* --- Mobile --- */
@media (max-width: 600px) {
  .navbar-container {
    flex-direction: column;
    text-align: center;
  }

  .menu {
    flex-direction: column;
    gap: 0.7rem;
  }

  .buttons {
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
  }

  .btn {
    width: 80%;
    margin: 0 auto;
  }

  .terms-container {
    margin-top: 2rem;
  }

  .title {
    font-size: 26px;
  }

  .update-date {
    font-size: 16px;
  }

  .intro {
    font-size: 15px;
    max-width: 90%;
  }

  .section-card {
    padding: 1.2rem;
  }

  .section-card h2 {
    font-size: 18px;
  }

  .section-card li {
    font-size: 15px;
  }
}
