.careers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 20px 80px;
}

/* Header Section */
.careers-header {
  text-align: center;
  margin-bottom: 80px;
}

.careers-header h1 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 20px;
  font-family: "Pretendard", sans-serif;
}

.careers-header p {
  font-size: 1.2rem;
  color: #666;
  font-family: "Pretendard", sans-serif;
}

/* Process Section */
.process-section {
  margin-bottom: 60px;
}

.process-section h2,
.benefits-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 20px;
  font-family: "Pretendard", sans-serif;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.process-step {
  flex: 1;
  text-align: center;
  max-width: 220px;
}

.step-icon {
  width: 120px;
  height: 120px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.step-icon img {
  width: 60px;
  height: 60px;
}

.step-arrow {
  display: flex;
  align-items: center;
}

.step-arrow img {
  width: 24px;
  height: 24px;
  opacity: 0.5;
}

.process-step h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-family: "Pretendard", sans-serif;
}

.process-step p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  font-family: "Pretendard", sans-serif;
}

/* Positions Section */
.positions-section {
  padding-top: 40px;
}

.positions-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 60px;
  font-family: "Pretendard", sans-serif;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.position-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
}

.position-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #7b4ae2;
}

.position-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  font-family: "Pretendard", sans-serif;
}

.position-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "Pretendard", sans-serif;
}

.position-status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  background: #f0f0f0;
  color: #666;
  font-family: "Pretendard", sans-serif;
}

.position-status.active {
  background: #7b4ae2;
  color: white;
}

@media (max-width: 1024px) {
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }

  .process-step {
    max-width: 100%;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .positions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .careers-header h1 {
    font-size: 2.5rem;
  }

  .positions-grid {
    grid-template-columns: 1fr;
  }

  .position-card {
    padding: 30px;
  }
}

.benefits-section {
  padding: 4rem 0;
  background: linear-gradient(
    180deg,
    rgba(96, 38, 244, 0.05) 0%,
    rgba(96, 38, 244, 0) 100%
  );
}

.benefits-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  justify-items: center;
}

.benefit-step {
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-step:hover {
  transform: translateY(-5px);
}

.benefit-step .step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(96, 38, 244, 0.15);
  transition: all 0.3s ease;
}

.benefit-step:hover .step-icon {
  box-shadow: 0 8px 30px rgba(96, 38, 244, 0.25);
  transform: scale(1.05);
}

.benefit-step .step-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.benefit-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}

.benefit-step p {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

.step-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.step-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .benefits-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .benefits-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefit-step {
    max-width: 100%;
  }
}

.careers-cta {
  text-align: center;
  margin: 4rem 0;
  padding: 2rem;
  border-radius: 20px;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #7b4ae2 0%, #6026f4 100%);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(123, 74, 226, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(123, 74, 226, 0.4);
  background: linear-gradient(135deg, #6026f4 0%, #7b4ae2 100%);
}

.cta-button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(123, 74, 226, 0.3);
}

@media (max-width: 768px) {
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .benefits-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-step {
    max-width: 100%;
  }
}

.notice-section {
  background: #fafbfc;
  border-radius: 12px;
  padding: 32px 28px 28px 28px;
  margin: 40px 0 12rem 0;
  box-shadow: 0 2px 8px rgba(30, 34, 40, 0.04);
}

.notice-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
}

.notice-section ul {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
}

.notice-section li {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 8px;
  word-break: keep-all;
}
