/* Header 11 - Futuriste et épuré */
.header11 {
  background: #FFFFFF;
  min-height: 60vh;
  display: grid;
  place-content: center;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(16, 54, 122, 0.10);
  margin-bottom: 48px;
  padding: 0;
}
.header11-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem 1rem;
}
.header11-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.header11-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.2rem;
  font-family: 'Montserrat', 'Arial', sans-serif;
}
.header11-highlight {
  color: #FE5716;
  font-weight: 700;
}
.header11-desc {
  font-size: 1.15rem;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.header11-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.header11-btn {
  display: inline-block;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 8px rgba(254, 87, 22, 0.08);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.header11-btn-primary {
  background: #10367A;
  color: #FFFFFF;
  border: 1px solid #10367A;
}
.header11-btn-primary:hover {
  background: #0a2655;
  border-color: #0a2655;
}
.header11-btn-secondary {
  background: #D3D3D3;
  color: #000000;
  border: 1px solid #D3D3D3;
}
.header11-btn-secondary:hover {
  background: #bebebe;
  color: #000000;
}