/* Why Join Section */
.why-join {
  padding: 80px 0;
}

.why-join h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 30px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
}

.benefit-card p {
  color: #666;
}

/* Culture Section */
.culture-section {
  padding: 80px 0;
  background-color: var(--gray);
}

.culture-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--dark);
}

.culture-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.culture-image {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.culture-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--dark);
}

.culture-value {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.value-icon {
  flex: 0 0 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 15px;
}

.value-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--dark);
}

/* Job Listings */
.job-listings {
  padding: 80px 0;
}

.job-listings h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--dark);
}

.departments {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.department-filter {
  padding: 10px 20px;
  margin: 0 10px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
}

.department-filter::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s;
}

.department-filter:hover::after,
.department-filter.active::after {
  width: 80%;
}

.department-filter:hover,
.department-filter.active {
  color: var(--primary);
}

.job-list {
  max-width: 800px;
  margin: 0 auto;
}

.job-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--dark);
}

.job-meta {
  display: flex;
  color: #666;
  font-size: 14px;
}

.job-meta span {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.job-meta span:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 8px;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: var(--gray);
}

.team-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.team-image {
  height: 250px;
}

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

.team-content {
  padding: 20px;
}

.team-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--dark);
}

.team-content p {
  color: #666;
  margin-bottom: 15px;
}

.team-content .quote {
  font-style: italic;
  color: #888;
  margin-bottom: 0;
}

/* Application Process */
.application-process {
  padding: 80px 0;
}

.application-process h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--dark);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--dark);
}

.process-step p {
  font-size: 14px;
  color: #666;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--gray);
}

.faq-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--dark);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  color: var(--primary);
}

.faq-answer {
  padding: 0 20px 20px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .culture-content {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .process-steps::before {
    display: none;
  }
}
