* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f4f4f4;
    scroll-behavior: smooth;
    line-height: 1.6;
  }
  
  a {
    color: #f9c74f;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  .header-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .content {
    max-width: 800px;
  }
  
  h1 {
    font-size: 3em;
    color: #f9c74f;
    margin-bottom: 10px;
  }
  
  .intro {
    font-size: 1.3em;
    color: #eee;
  }
  
  section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .card {
    max-width: 800px;
    background-color: rgba(28, 28, 28, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(249, 199, 79, 0.1);
  }
  
  h2 {
    color: #f9c74f;
    margin-bottom: 20px;
  }
  