
    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      background: #f6f6f6;
      color: #222;
      scroll-behavior: smooth;
    }
    header {
      background: crimson;
      color: white;
      padding: 2rem 1rem;
      text-align: center;
    }
    h2 {
      color: black;      
      max-width: 600px;
      background: white;
      margin: 2rem auto;
      padding: 2rem;
      border-radius: 8px;
      height: 50px;
    }
    nav {
      display: flex;
      justify-content: center;
      background: #222;
      padding: 1rem 0;
      gap: 2rem;
      flex-wrap: wrap;
    }
    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }
    nav a:hover {
      color: crimson;
    }
    
    p {
      max-width: 600px;
      background: white;
      
     
      
    }
    section {
      max-width: 600px;
      background: white;
      margin: 2rem auto;
      padding: 2rem;
      border-radius: 8px;
    }
    .hero {
      background: url('https://via.placeholder.com/1200x400') no-repeat center center;
      background-size: cover;
      color: rgb(36, 24, 24);
      text-align: center;
      padding: 3rem 1rem;
    }
    .hero h1 {
      font-size: 3rem;
      margin: 0;
    }
    .hero p {
      font-size: 1.25rem;
      margin-top: 0.5rem;
    }
    
    ul {
      padding-left: 1.5rem;
    }
    .cta {
      text-align: center;
      background: crimson;
      color: white;
      padding: 2rem 1rem;
      border-radius: 6px;
    }
    .cta a {
      display: inline-block;
      margin: 1rem 0.5rem 0;
      padding: 0.75rem 1.25rem;
      background: white;
      color: crimson;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
    }
    footer {
      background: #222;
      color: #ccc;
      text-align: center;
      padding: 1rem;
    }
  