<!DOCTYPE html>
<html lang="en">
<head>
<style>
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
  }

  header.hero {
    text-align: center;
    padding: 100px 20px;
    background: #007BFF;
    color: white;
  }

  header.hero h1 {
    font-size: 3rem;
  }

  header.hero p {
    font-size: 1.25rem;
    margin: 20px 0;
  }

  header.hero .button {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #007BFF;
    border-radius: 5px;
    text-decoration: none;
  }

  section.about, section.contact {
    padding: 50px 20px;
    text-align: center;
  }

  section.about h2, section.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  section.about p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  section.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  section.contact form label {
    display: block;
    margin-bottom: 5px;
  }

  section.contact form input, section.contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  section.contact form button {
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  footer {
    text-align: center;
    padding: 10px;
    background: #f4f4f4;
  }
</style>
</head>
</html>
