body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url("https://i0.wp.com/bhtherapygroup.com/wp-content/uploads/2021/08/personality-types.jpg?fit=1920%2C1080&ssl=1");
    background-size: cover;
    margin: 0;
    padding: 0;
    color: #102E50;
  }
  
  header {
    background: #102E50;
    text-align: center;
    padding: 2rem 1rem;
    font-family: Comic Sans MS, cursive;
    color: white;
  }
  
  header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #F5C45E;
  }
  
  .home-btn {
    background-color: #F5C45E;
    color: #102E50;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s ease;
    margin-top: 2rem; 
    display: block;
    margin-left: auto;
    margin-right: auto; 
  }
  
  .home-btn:hover {
    background-color: #E78B48;
  }
  
  .tabs {
    display: flex;
    justify-content: center;
    background: #E78B48;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .tab {
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #102E50;
  }
  
  .tab.active {
    border-color: #BE3D2A;
    color: #BE3D2A;
    background-color: #F5C45E;
  }
  
  .tab:hover {
    background-color: #F5C45E;
    color: #102E50;
  }
  
  .content {
    max-width: 70%;
    margin: 2rem auto;
    background: #ffffffee;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem; 
  }
  
  .trait-content {
    display: none;
    animation-duration: 0.6s;
    animation-fill-mode: both;
  }
  
  .trait-content.active {
    display: block;
  }
  
  @keyframes slideInFromRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideInFromLeft {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .slide-left {
    animation-name: slideInFromLeft;
  }
  
  .slide-right {
    animation-name: slideInFromRight;
  }
  
  .content h1 {
    text-align: center;
    color: #102E50;
    margin-bottom: 2rem;
  }
  
  .content h2 {
    color: #E78B48;
    border-bottom: 2px solid #F5C45E;
    padding-bottom: 0.5rem;
  }
  
  ul {
    margin-left: 1.2rem;
  }
  
  img {
    max-width: 100%;
    height: 500px;
    width: 900px;
    border-radius: 10px;
    margin-top: 1rem;
    border: 3px solid #F5C45E;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  footer {
    text-align: center;
    padding: 1.5rem;
    background: #102E50;
    color: white;
    font-size: 0.9rem;
  }
  