/* ========================================
   Employer Guide Page Styles
   ======================================== */

/* Page Title Section */
.page-title-section {
  padding: 60px 24px 40px;
  text-align: center;
  background: #fff;
}

.page-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2744;
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 24px 40px;
  flex-wrap: wrap;
  background: #fff;
}

.tab-item {
  font-size: 0.9rem;
  color: #666;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.tab-item:hover,
.tab-item.active {
  color: #1a2744;
  border-bottom-color: #1a2744;
}

/* Process Section */
.process-section {
  display: flex;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  background: #fff;
}

.process-left {
    margin:0px auto;
}

.process-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2744;
  text-align: center;
  margin-bottom: 32px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-text {
  font-size: 1rem;
  color: #1a2744;
  font-weight: 500;
}

.step-arrow {
  text-align: center;
  padding: 8px 0;
  margin-left: 20px;
  font-size: 1.2rem;
  color: #1a2744;
}

/* Process Right - Reference */
.process-right {
  flex: 1;
  padding: 20px;
}

.reference-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.reference-icon svg {
  width: 100%;
  height: 100%;
}

.reference-title {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}

.reference-list {
  list-style: none;
}

.reference-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #4a90d9;
  cursor: pointer;
  transition: color 0.2s;
}

.reference-list li:hover {
  color: #1a2744;
  text-decoration: underline;
}

/* Content Sections */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
  border-top: 1px solid #eee;
  background: #fff;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1a2744;
}

.content-list {
  list-style: none;
}

.content-list > li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
}



.sub-list {
  margin-top: 12px;
  margin-left: 10px;
  list-style: none;
}

.sub-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.sub-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: #999;
}

/* Bottom Buttons */
.bottom-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 24px 80px;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
}

.btn {
  display: inline-block;
  padding: 14px 48px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline {
  background: #fff;
  color: #1a2744;
  border: 2px solid #1a2744;
}

.btn-outline:hover {
  background: #1a2744;
  color: #fff;
}

.btn-primary {
  background: #1a2744;
  color: #fff;
  border: 2px solid #1a2744;
}

.btn-primary:hover {
  background: #2d3e5f;
  border-color: #2d3e5f;
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 1.8rem;
  }

  .tab-nav {
    gap: 16px;
  }

  .tab-item {
    font-size: 0.8rem;
  }

  .process-section {
    flex-direction: column;
    gap: 40px;
  }

  .process-left {
    flex: none;
    width: 100%;
  }

  .bottom-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
