body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #E6F7FF;
    color: #333333;
    }

    /* Navigation Bar */
    .selection {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #E6F7FF;
    height: auto;
    padding: 10px;
}

/* Home Button */
.home {
    background-image: url(home.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
}
    /* Contact Form Section */


   .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px;
  gap: 40px;
  background-color: #f7f7f7;
}

.left {
  flex: 1;
  min-width: 300px;
}

.right {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 500px;
}

    .right h2 {
      margin-bottom: 20px;
    }

    .right input,
    .right select,
    .right textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 14px;
    }

    .submit-btn {
      background-color: #7FB800;
      color: #fff;
      padding: 12px 20px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: bold;
    }

    .submit-btn:hover {
      background-color: #679500;
    }
/* Buttons */
#buttons, #home2 {
    color: #333333;
    background-color: #E6F7FF;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 60px;
    margin: 10px;
}

#home2 {
    width: 60px;
}

#buttons:hover,
#home2:hover {
    background-color: #CCCCCC;
}

    @media (max-width: 768px) {
 #buttons {
        width: auto;
        margin: 5px 0;
    }

  .container {
    flex-direction: column;
    align-items: center;
  }

  .left, .right {
    max-width: 100%;
  }
}