
  body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
    background: #f9f9f9;
  }
  .contact-box {
    max-width: 400px;
    margin: auto;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  h2 {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center;
  }
  label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
  }
  select, textarea, button {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  textarea {
    resize: vertical;
    min-height: 100px;
  }
  button {
    background: #007BFF;
    color: white;
    cursor: pointer;
    border: none;
  }
  button:hover {
    background: #0056b3;
  }
  .message {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
  }
  

.hamburger-icon {
  width: 30px;
  cursor: pointer;
  padding: 10px 0;
}

.hamburger-icon div {
  width: 30px;
  height: 4px;
  background-color: #333;
  margin: 5px 0;
  transition: 0.4s;
}

.menu {
  display: none;
  flex-direction: column;
  background-color: #f4f4f4;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  width: fit-content;
}

.menu a {
  text-decoration: none;
  color: #000;
  margin: 5px 0;
}

.menu a:hover {
  color: #007BFF;
}

.menu.active {
  display: flex;
}
.main.page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}