* {
  font-family: Arial, sans-serif !important;
}
.rehberlik {
  padding: 50px 120px;
  background: #f5f6f8;
}

/* ===== TITLE ===== */
.rehberlik h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  color: #2b2b2b;
}

/* alt xətt */
.rehberlik h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #5a2d0c;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== LIST ===== */
.rehberlik-list {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== ITEM ===== */
.rehber-item {
  display: block;
  padding: 22px 0;
  text-decoration: none;
  color: #2c2c2c;
  font-size: 20px;
  border-bottom: 1px solid #e2e2e2;
  transition: 0.3s ease;
}

/* name */
.name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===== ARROW ===== */
.arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.3s ease;
}

/* hover */
.rehber-item:hover {
  color: #5a2d0c;
}

/* arrow animation */
.rehber-item:hover .arrow {
  opacity: 1;
  transform: translateX(10px);
}
@media (max-width: 992px) {
  .rehberlik {
    padding: 30px 15px;
  }

  .rehberlik h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .rehberlik-list {
    max-width: 100%;
  }

  .rehber-item {
    padding: 16px 0;
    font-size: 16px;
  }

  .name {
    gap: 8px;
    line-height: 1.5;
  }

  .arrow {
    opacity: 1;
    transform: none;
  }
}
