<style>
    /* Add your CSS styles here */
    body {
      font-family: "Times New Roman", Times, serif;
      margin: 0;
      padding: 0;
      
    }
    
    .container {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 20px 20px 20px;
      text-align: left;

    }

    a {
  color: green;
}
    
    h1 {
      font-size: 32px;
      color: #333;
      margin-top: 6px;
      margin-bottom: 20px;
      text-align: center;
    }

    h3 {
      font-size: 22px;
      color: #666;
      margin-bottom: 20px;
      text-align: left;
    }
    
    p {
      font-size: 18px;
      color: #444;
      margin-bottom: 20px;
       text-align: left;
    }
    
    .banner {
      width: 100%;
      max-height: 150px;
      object-fit: contain;
      margin: 0 auto;
    }
    
    .btn {
      display: inline-block;
      padding: 10px 20px;
      background-color: #006400;
      color: #fff;
      text-decoration: none;
      text-align: center;
      font-size: 18px;
      border-radius: 4px;
      transition: background-color 0.3s ease;
      
    }
    
    .btn:hover {
      background-color: #555;
    }

    .background-image {
  background-image: url('x.png');
  background-size: cover;
  background-position: center;
}
ul {
  font-size: 18px;
      color: #444;
      margin-bottom: 20px;
       text-align: left;
    }


  .two-col {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .col-goals {
    flex: 1;
  }

  .col-signup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
    min-width: 120px;
  }

  .btn-square {
    padding: 10px 12px;
    line-height: 1.15;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    width: 72px;
  }

  .voting-callout {
    background-color: #f0f7f0;
    border-top: 3px solid #006400;
    padding: 12px 24px;
    margin: 0 auto 16px auto;
    border-radius: 4px;
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
    width: fit-content;
  }

  .voting-callout strong {
    display: block;
    margin-bottom: 5px;
    color: #006400;
  }

  .action-card {
    border-left: 3px solid #006400;
    background-color: #f9f9f9;
    padding: 14px 18px;
    margin-bottom: 14px;
    border-radius: 4px;
  }

  .action-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #006400;
    font-size: 20px;
  }

  .action-card p {
    margin-top: 0;
    margin-bottom: 2px;
  }

  .action-card p:last-child {
    margin-bottom: 0;
  }

  .election-day {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
  }

  .voting-callout a {
    display: inline-block;
    margin-top: 4px;
  }

  @media (max-width: 600px) {

    .two-col {
      flex-direction: column;
      gap: 0;
      margin-top: -20px;
    }

    .col-signup {
      order: -1;
      width: 100%;
      padding-top: 0;
      margin-top: 16px;
      margin-bottom: 3px;
    }

    .col-goals h3 {
      margin-bottom: 10px;
    }

    .voting-callout {
      font-size: 14px;
    }

    .voting-callout strong {
      font-size: 14px;
    }

    .container {
      padding-bottom: 40px;
    }

    .btn-square {
      width: auto;
      padding: 12px 30px;
      line-height: 1.4;
      font-size: 18px;
    }

    .btn-square br {
      display: none;
    }

    li {
      margin-bottom: 8px;
    }
  }

  </style>