body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #fdfdfd;
    color: #102E50;
  }
  
  header {
    background: #102E50 url("https://i0.wp.com/bhtherapygroup.com/wp-content/uploads/2021/08/personality-types.jpg?fit=1920%2C1080&ssl=1") no-repeat center center;
    background-size: cover;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
  }
  
  header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  header h1, header p {
    position: relative;
    z-index: 1;
  }
  
  header h1 {
    margin: 0;
    font-size: 3rem;
    color: #F5C45E;
    text-shadow: 2px 2px #102E50;
  }
  
  header p {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: white;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    border-radius: 10px;
  }
  
  section.intro {
    max-width: 1000px;
    margin: 3rem auto 2rem auto;
    padding: 0 2rem;
    text-align: center;
  }
  
  section.intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #E78B48;
  }
  
  section.intro p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .traits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 2rem;
  }
  
  .trait-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 8px solid #F5C45E;
    transition: transform 0.2s ease;
  }
  
  .trait-card:hover {
    transform: translateY(-5px);
  }
  
  .trait-card h3 {
    margin-top: 0;
    color: #BE3D2A;
  }
  
  .trait-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .bottom-row {
    grid-column: span 3;
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  
  .bottom-row .trait-card {
    width: 100%;
    max-width: 400px;
  }
  
  .link {
    text-align: center;
    margin: 3rem 0;
  }
  
  a.button {
    background: #F5C45E;
    color: #102E50;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  a.button:hover {
    background: #BE3D2A;
    color: white;
  }
  
  footer {
    text-align: center;
    padding: 1.5rem;
    background: #102E50;
    color: white;
    font-size: 0.9rem;
  }
  