:root {
  --exec-navy: #0c1a2e;
  --exec-gold: #c9a84c;
  --exec-card-bg: #ffffff;
  --exec-text: #1e293b;
  --exec-text-muted: #64748b;
  --exec-section-bg: #f0f4f8;
  --exec-border: #e2e8f0;
}

.faq-item { margin-bottom: 14px; }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.08em;
  font-weight: 600;
  color: var(--exec-navy);
  padding: 14px 0 10px 0;
  cursor: pointer;
  outline: none;
  transition: color 0.2s;
  position: relative;
}
.faq-question[aria-expanded="true"] { color: var(--exec-gold); }
.faq-question::after {
  content: '\25BC';
  float: right;
  font-size: 0.8em;
  margin-left: 8px;
  transition: transform 0.2s;
  color: var(--exec-gold);
}
.faq-question[aria-expanded="true"]::after { transform: rotate(-180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  background: var(--exec-card-bg);
  color: var(--exec-text-muted);
  font-size: 1.05em;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 1px 4px rgba(12,26,46,0.04);
  padding: 0 22px;
  margin-bottom: 18px;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.2s, margin-bottom 0.2s;
  line-height: 1.7;
}
.faq-question[aria-expanded="true"] + .faq-answer {
  padding: 20px 22px 24px 22px;
  margin-bottom: 28px;
}

.faq-main {
  padding: 60px 0 40px 0;
  background: var(--exec-section-bg);
}
.faq-title {
  font-size: 2.2em;
  font-weight: 800;
  color: var(--exec-navy);
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.02em;
}
.faq-lead {
  font-size: 1.13em;
  color: var(--exec-text-muted);
  max-width: 600px;
  margin: 0 auto 32px auto;
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
}
.faq-search {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 36px auto;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--exec-border);
  font-size: 1.05em;
  color: var(--exec-text);
  background: var(--exec-card-bg);
  box-shadow: 0 2px 8px rgba(12,26,46,0.04);
  transition: border-color 0.2s;
}
.faq-search:focus {
  border-color: var(--exec-gold);
  outline: none;
  box-shadow: 0 2px 12px rgba(201,168,76,0.1);
}

.faq-section {
  margin-bottom: 38px;
  background: var(--exec-card-bg);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(12,26,46,0.05);
  padding: 28px 24px 18px 24px;
  border: 1px solid var(--exec-border);
}
.faq-section-title {
  font-size: 1.2em;
  color: var(--exec-navy);
  font-weight: 700;
  margin-bottom: 16px;
  border-left: 3px solid var(--exec-gold);
  padding-left: 12px;
}
.faq-list {
  list-style: disc inside;
  padding-left: 0;
  color: var(--exec-text-muted);
  font-size: 1.05em;
}
.faq-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .faq-main { padding: 30px 0 20px 0; }
  .faq-title { font-size: 1.4em; }
  .faq-lead { font-size: 1em; }
  .faq-section { padding: 16px 10px 10px 10px; }
  .faq-section-title { font-size: 1em; }
}
@media (min-width: 1080px) {
  .faq-main { padding-top: 140px; }
}
