body {
    font-family: 'Arial', sans-serif;
    color: #333;
  }
  
  .header-bg {
    background: linear-gradient(to right, #E5C824, #080808);
  }
  
  h2 {
    font-weight: bold;
    color: #E5C824;
  }
  
  .card {
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  blockquote {
    background: #f9f9f9;
    padding: 15px;
    border-left: 5px solid #E5C824;
  }
  
  footer a {
    text-decoration: none;
  }
  
  