/* page-header */
.page-header {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #edf6ff;
  overflow: hidden;
  padding-top: 70px;
}

.page-title {
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  color: #2c4f7c;
  position: relative;
  z-index: 2;
}

.page-title-en {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
  color: #78a0cc;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/page-header-bg.svg');
  background-position: center;
  background-size: cover;
  opacity: 0.3;
  z-index: 1;
}

/* message-section */
.message-section {
  background-color: #fff;
}

.message-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.message-text {
  flex: 1;
}

.message-lead {
  font-size: 24px;
  font-weight: 300;
  color: #2c4f7c;
  line-height: 1.5;
  margin-bottom: 25px;
}

.message-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

.message-image {
  flex: 1;
  max-width: 500px;
}

.message-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* jobs-section */
.jobs-section {
  background-color: #f5f9fe;
  position: relative;
  overflow: hidden;
}

.jobs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/jobs-bg.svg');
  background-position: center;
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}

.jobs-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.job-tab {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  background-color: #f0f0f0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.job-tab:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.job-tab:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.job-tab.active {
  background-color: #2c4f7c;
  color: white;
}

.jobs-content {
  position: relative;
  z-index: 1;
}

.job-panel {
  display: none;
}

.job-panel.active {
  display: block;
}

.job-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.job-card-title {
  font-size: 22px;
  font-weight: 500;
  color: #2c4f7c;
  margin: 0;
}

.job-card-badge {
  display: inline-block;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  background-color: #78a0cc;
  border-radius: 30px;
}

.job-card-content {
  padding: 30px;
}

.job-description {
  margin-bottom: 30px;
}

.job-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.job-detail {
  margin-bottom: 30px;
}

.job-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.job-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.job-item-label {
  font-size: 16px;
  font-weight: 500;
  color: #2c4f7c;
  margin-bottom: 10px;
}

.job-item-content {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.job-item-content ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.job-item-content ul li {
  margin-bottom: 5px;
}

.job-item-content p {
  margin-bottom: 5px;
}

.job-apply {
  text-align: center;
  margin-top: 30px;
}

/* environment-section */
.environment-section {
  background-color: #fff;
}

.environment-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.environment-feature {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.environment-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.environment-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.environment-feature-icon img {
  width: 100%;
  height: auto;
}

.environment-feature-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #2c4f7c;
}

.environment-feature-text {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

.environment-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.environment-gallery-item {
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.environment-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.environment-gallery-item:hover img {
  transform: scale(1.05);
}

/* interview-section */
.interview-section {
  background-color: #f5f9fe;
}

.interviews {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.interview {
  display: flex;
  gap: 40px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.interview-image {
  flex: 0 0 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 5px;
}

.interview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-content {
  flex: 1;
}

.interview-name {
  font-size: 20px;
  font-weight: 500;
  color: #2c4f7c;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.interview-position {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

.interview-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #555;
}

/* process-section */
.process-section {
  background-color: #fff;
}

.process-steps {
  position: relative;
  max-width: 800px;
  margin: 0 auto 30px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 2px;
  background-color: #eee;
  transform: translateX(-50%);
}

.process-step {
  position: relative;
  margin-bottom: 40px;
  padding-left: 100px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 50px;
  background-color: #2c4f7c;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  z-index: 1;
}

.process-step-content {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-step-title {
  font-size: 18px;
  font-weight: 500;
  color: #2c4f7c;
  margin-bottom: 10px;
}

.process-step-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.process-note {
  font-size: 14px;
  color: #666;
  text-align: center;
}

.process-note p {
  margin-bottom: 5px;
}

/* cta-section */
.cta-section {
  background-color: #2c4f7c;
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.4;
}

.cta-text {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.7;
  opacity: 0.8;
}

/* Animation */
.fade-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .message-content {
    flex-direction: column;
  }
  
  .message-text {
    order: 2;
  }
  
  .message-image {
    order: 1;
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .interview {
    flex-direction: column;
  }
  
  .interview-image {
    flex: auto;
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .environment-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header {
    height: 200px;
    padding-top: 60px;
  }
  
  .page-title {
    font-size: 28px;
  }
  
  .job-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .job-card-badge {
    margin-top: 10px;
  }
  
  .cta-title {
    font-size: 26px;
  }
  
  .cta-text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .page-header {
    height: 180px;
  }
  
  .page-title {
    font-size: 24px;
  }
  
  .message-lead {
    font-size: 20px;
  }
  
  .job-tab {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .environment-gallery {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    padding-left: 80px;
  }
  
  .process-step-number {
    width: 80px;
    font-size: 14px;
  }
  
  .process-steps::before {
    left: 40px;
  }
}