@import url('styles.css');

.careers-hero {
  background: linear-gradient(rgba(30,30,40,0.55), rgba(30,30,40,0.55)),
              url('static/skyline.jpg') center/cover no-repeat;
  padding: 90px 24px;
  text-align: center;
  color: #fff;
}

.careers-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.careers-hero .pill {
  display: inline-block;
  background: #f6c94c;
  color: #000000;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.careers-hero h1 {
  font-size: 2.625rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.careers-hero p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0.95;
}

.careers-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.btn-primary {
  background: #f6c94c;
  color: #1e1e28;
}

.btn-secondary {
  background: #fff;
  color: #000000;
  border: 1px solid #ddd;
}

/* Info cards */
.careers-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 60px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.info-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 28px;
  flex: 1 1 260px;
  max-width: 320px;
}

.info-card h3 {
  font-size: 1.45rem;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.info-card p {
  font-size: 1.325rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 18px;
}

.view-link {
  color: #d4a017;
  font-weight: 600;
  font-size: 1.45rem;
  text-decoration: none;
}

/* FAQ */
.careers-faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.careers-faq h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 4px;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 18px;
  color: #999;
}

.faq-answer {
  display: none;
  background: #f7f7f7;
  padding: 0 4px;
}

.faq-item.open .faq-answer {
  display: block;
  padding: 16px 20px;
  margin-bottom: 16px;
  font-size: 1.325rem;
  color: #555;
  line-height: 1.6;
}