/* Careers Page Specific Styles */

#careers {
  p {
    text-align: left !important;
    font-family: 'Montserrat', sans-serif;
  }
}

/* Why Work With Us Section */
.why_work_area {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}

.header_hero {
  padding-top: 74px;
}

.careers-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.why_work_area::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(43, 42, 61, 0.85);
}

.why_work_area .container {
  position: relative;
  z-index: 1;
}

.why_work_area .section_title .title {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.benefits_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits_list ul li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  padding: 12px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits_list ul li:last-child {
  border-bottom: none;
}

.benefits_list ul li i {
  color: white;
  font-size: 24px;
  margin-right: 15px;
  flex-shrink: 0;
  min-width: 30px;
  text-align: center;
}

.benefits_note {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-top: 30px;
  text-align: center;
}

/* Departments Section */
.departments_area {
  background-color: #F9F9F9;
}

/* Culture Section */
.culture_section_area {
  background-color: #fff;
  padding-bottom: 30px;
}

.culture_section_area .section_title .title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #2B2B44;
}

.culture_text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  color: #5A5872;
  text-align: center;
}

/* Diversity Section */
.diversity_section_area {
  background-color: #fff;
  padding-bottom: 60px;
}

.diversity_section_area .section_title .title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #2B2B44;
}

.diversity_text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  color: #5A5872;
  text-align: center;
}

/* CTA Section */
.open-jobs-section-area {
  background-color: #F9F9F9;
}

.cta_content .cta_title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: #2B2B44;
  margin-bottom: 20px;
}

.cta_content .cta_text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #5A5872;
  margin-bottom: 30px;
}

.cta_content .main-btn {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .cta_content .cta_title {
    font-size: 28px;
  }
  
  .cta_content .cta_text {
    font-size: 16px;
  }
  
  .culture_text p,
  .diversity_text p {
    font-size: 14px;
  }
}

.department_card {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #3687C8;
}

.department_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.department_title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #2B2B44;
  margin-bottom: 20px;
}

.department_card p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.8;
  color: #5A5872;
}

@media (max-width: 767px) {
  .department_card {
    margin-bottom: 30px;
  }
  
  .benefits_list ul li {
    font-size: 14px;
  }
  
  .benefits_list ul li i {
    font-size: 20px;
    margin-right: 10px;
  }
  #departments {
    .mt-30 {
      margin-top: 0px;
    }
    .col-lg-6.col-md-6 {
        padding-bottom: 20px;
    }
  }
  .header_hero {
      padding-top: 62px;
  }
}

