/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #F4F8F6;
    color: #333;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  /* Header Styles */
  .header {
    background-color: #2C6B54;
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
  }
  
  .header h1 {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .home-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #2C6B54;
    border: 2px solid #2C6B54;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
  }
  
  .home-button:hover {
    background-color: #2C6B54;
    color: white;
  }
  .header h2 {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 10px;
  }
  
  /* Main Content Styles */
  .content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .content-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .content-box p {
    margin-bottom: 20px;
  }
  
  .section {
    margin-top: 20px;
  }
  
  .section h3 {
    font-weight: bold;
    font-size: 1.2rem;
    color: #2C6B54;
  }
  
  .section a {
    color: #2C6B54;
    text-decoration: none;
  }
  
  .section a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .header h1 {
      font-size: 2.2rem;
    }
  
    .header h2 {
      font-size: 1rem;
    }
  
    .content-box {
      padding: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .header h1 {
      font-size: 1.8rem;
    }
  
    .header h2 {
      font-size: 0.9rem;
    }
  
    .content-box {
      padding: 15px;
    }
  
    .section h3 {
      font-size: 1rem;
    }
  }
  