/* ===============================
   GLOBAL
=============================== */

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: #f4f6f9;
  color: #333;
}

.jobdesk-section {
  width: 100%;
}

/* ===============================
   HEADER
=============================== */

.jobdesk-header {
  text-align: center;
  padding: 40px 20px 20px;
}

.jobdesk-logo {
  width: 90px;
  margin-bottom: 15px;
}

.jobdesk-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #123524;
}

.jobdesk-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
  line-height: 1.6;
}

/* ===============================
   WRAPPER
=============================== */

.jobdesk-wrapper {
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

/* ===============================
   CARD
=============================== */

.jobdesk-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.jobdesk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Top Card */
.jobdesk-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.jobdesk-logo-card {
  width: 50px;
}

.jobdesk-title {
  font-size: 1.4rem;
  color: #3E7B27;
  margin: 0;
}

/* ===============================
   LIST
=============================== */

.jobdesk-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jobdesk-card ul li {
  background: #f8f8f8;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: 0.2s ease;
  position: relative;
  padding-left: 35px;
}

/* Bullet custom */
.jobdesk-card ul li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: #3E7B27;
  font-weight: bold;
}

.jobdesk-card ul li:hover {
  background: #e6f0ea;
  transform: translateX(5px);
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 768px) {
  .jobdesk-header h1 {
    font-size: 2rem;
  }

  .jobdesk-card {
    padding: 20px;
  }

  .jobdesk-top {
    flex-direction: column;
    text-align: center;
  }

  .jobdesk-logo-card {
    width: 60px;
  }
}
