/* General Styles */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  /* Header */
  header {
    background-color: #24292e;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  /* Sections */
  section {
    background: white;
    margin: 1rem auto;
    padding: 2rem;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Section Headings */
  h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
  }
  
  /* Lists */
  ul {
    list-style-type: square;
    padding-left: 20px;
  }
  
  /* Links */
  a {
    color: #007acc;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Form */
  form {
    display: flex;
    flex-direction: column;
  }
  
  form input,
  form textarea {
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  form button {
    background-color: #007acc;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
  }
  
  form button:hover {
    background-color: #005fa3;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    background-color: #24292e;
    color: white;
  }
  