body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fffbe8; /* Light yellow for a warm background */
    color: #333;
  }
  
  header {
    background: #c72e00; /* Gold-like tone for header background */
    color: #ffffff; /* White text for contrast */
    padding: 60px 10px; /* Increased padding for visibility */
    text-align: center;
    border-bottom: 5px solid #603f00; /* Dark brown border for flair */
  }
  
  header h1 {
    font-size: 3em; /* Large font size for prominence */
    font-weight: bold;
    margin: 0;
  }
  
  header p {
    font-style: italic;
    font-size: 1.5em; /* Slightly increased font size */
  }
  
  section {
    margin: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  h1, h2 {
    color: #c77f00; /* Matches header color for consistent branding */
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li {
    margin: 10px 0;
  }
  
  footer {
    text-align: center;
    background: #603f00; /* Dark brown for footer background */
    color: #ffffff;
    padding: 10px;
    margin-top: 20px;
  }
  
  p, li {
    font-size: 16px;
  }