*{
  box-sizing:border-box;
}



.jobs-page {
  padding: 60px 20px;
  background: #f5f7fa;
}

.jobs-list {
  max-width: 900px;
  margin: 0 auto;
}

.job-item {
  margin-bottom: 20px;
  border-radius: 22px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0d3b66, #1b6ca8);
  color: #ffffff;
}

/* BUTTON */
.job-title {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 28px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* CONTENT CLOSED */
.job-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

/* CONTENT OPEN */
.job-item.active .job-content {
  max-height: 5000px; /* 🔥 shumë i madh që të mos presë tekst */
}

/* TEXT */
.job-content p {
  padding: 0 28px 28px;
  line-height: 1.7;
  font-size: 16px;
}

/* ARROW */
.arrow {
  transition: transform 0.3s ease;
}

.job-item.active .arrow {
  transform: rotate(180deg);
}
