/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
  }
  
  body {
    background: #f7f2fc;
    color: #3d185b; /* A deeper purple tone for text */
    line-height: 1.6;
  }
  
  /* Header */
  header {
    background-color: #7e3f98; /* Rich purple background */
    color: #fff;
    padding: 1em 0;
    text-align: center;
  }
  
  header h1 {
    margin-bottom: 0.5em;
  }
  
  nav ul {
    list-style: none;
  }
  
  nav li {
    display: inline;
    margin: 0 1em;
  }
  
  nav a {
    color: #ffe6fa;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  /* Main Sections */
  .section-content {
    max-width: 800px;
    margin: 2em auto;
    padding: 0 1em;
  }
  
  .section-content h2 {
    margin-bottom: 0.5em;
    color: #551f66; /* Slightly darker purple heading */
  }
  
  .section-content p {
    margin-bottom: 1em;
  }
  
  /* Footer */
  footer {
    background-color: #7e3f98;
    color: #fff;
    padding: 1.5em;
    text-align: center;
    margin-top: 2em;
  }
  
  footer h2 {
    margin-bottom: 0.5em;
  }
  
  footer ul {
    list-style: none;
    margin: 1em 0;
  }
  
  footer li {
    margin: 0.5em 0;
  }
  
  footer a {
    color: #ffe6fa;
    text-decoration: none;
    font-weight: bold;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  