section {
    display: flex;
    justify-content: center;
}

/* Global styles */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f9fc;
    color: #333;
    line-height: 1.6;
  }
  
  /* Container */
  .job-detail-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    gap: 40px;
    padding: 0 20px;
  }
  
  /* Left column - Job content */
  .job-main {
    flex: 2;
  }
  
  .job-main h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1d1d1f;
  }
  
  .job-main .meta {
    font-size: 14px;
    color: #666;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
  }
  
  .job-main .meta span::before {
    content: '•';
    margin-right: 8px;
    color: #aaa;
  }
  
  .job-main .job-description {
    margin-bottom: 30px;
  }
  
  .job-main h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1d1d1f;
  }
  
  .job-main ul {
    list-style: disc;
    padding-left: 20px;
  }
  
  .job-main ul li {
    margin-bottom: 10px;
  }
  
  /* Right column - Sidebar */
  .job-sidebar {
    background-color: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-width: 360px;
    width: 100%;
    height: fit-content;
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* Tombol Apply */
  .job-sidebar .apply-btn {
    display: block;
    background: linear-gradient(to bottom, #2d5bfb, #1e48f0);
    color: #fff;
    padding: 14px 20px;
    border-radius: 999px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(45, 91, 251, 0.3);
    transition: background 0.3s;
  }
  
  .job-sidebar .apply-btn:hover {
    background: #1a3bcc;
  }
  
  /* Section Title */
  .job-sidebar .section-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
    color: #333;
  }
  
  /* Ikon Sosial Media */
  .job-sidebar .social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
  }
  
  .job-sidebar .social-icons a {
    font-size: 22px;
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .job-sidebar .social-icons a:hover {
    color: #2d5bfb;
  }
  
  /* Daftar Pekerjaan Lain */
  .job-sidebar .other-job-item {
    display: block;
    margin-bottom: 18px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
  }
  
  .job-sidebar .other-job-item strong {
    color: #2d5bfb;
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 14.5px;
  }
  
  .job-sidebar .other-job-item span {
    font-size: 13px;
    color: #666;
  }
  
  
