
/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* General body styling */
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    padding: 20px;
  }
  
  /* Header Styling */
  header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 20px 0;
    border-radius: 8px;
  }
  
  /* Heading and paragraph inside header */
  header h1 {
    font-size: 36px;
  }
  
  header p {
    font-size: 20px;
  }
  
  /* Section Styling */
  section {
    margin: 20px 0;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Section titles */
  section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
  }
  
  /* Unordered list in each section */
  section ul {
    list-style-type: none;
  }
  
  section ul li {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  /* Button Styling */
  button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  /* Footer Styling */
  footer {
    text-align: center;
    margin-top: 20px;
  }
  
