body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }
  
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .header {
    background-color: #2ecc71;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .header-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .content-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .features {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .feature-icon {
    margin-right: 10px;
  }
  
  .feature-text {
    font-size: 16px;
  }
  
  .image {
    margin-bottom: 20px;
  }
  
  .image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
  
  .form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .form-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .form-field {
    margin-bottom: 10px;
  }
  
  .form-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  
  .form-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  
  .form-button {
    background-color: #2ecc71;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .footer {
    background-color: #2ecc71;
    color: #fff;
    padding: 20px;
    text-align: center;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
  }
  
  .icon i {
    font-size: 24px;
    color: #2ecc71;
  }
  
  .icon-text {
    text-align: center;
  }
  
  .location-icon {
    font-size: 24px;
    color: #2ecc71;
    margin: 10px;
  }