/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    padding: 30px;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    scroll-behavior: smooth;
    line-height: 1.6;
  }
  
  /* Header */
  header {
    background-color: #324D3E;
    color: white;
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  header h1 {
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  /* Main Section */
  main {
    margin-top: 30px;
    padding-bottom: 30px;
  }
  
  /* Section Styling */
  section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #324D3E;
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  section p, section ul {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
  }
  
  ul {
    list-style-type: disc;
    padding-left: 30px;
  }
  
  ul li {
    margin-bottom: 10px;
  }
  
  section ul li::marker {
    color: #324D3E;
  }
  
  /* Contact Information */
  address {
    font-style: normal;
    font-size: 1.3em;
    color: #555;
  }
  
  address p {
    margin-bottom: 10px;
  }
  
  a {
    color: #324D3E;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
   /* Footer */
   .footer {
    background-color: #324D3E;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 1rem;
    position: relative;
    width: 100%;
    bottom: 0;
  }
  
  footer p {
    font-size: 1.1em;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    body {
      padding: 20px;
    }
  
    section {
      padding: 20px;
    }
  
    header h1 {
      font-size: 2.2em;
    }
  
    section h2 {
      font-size: 1.7em;
    }
  
    footer p {
      font-size: 1em;
    }
  }
  