body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #f4f4f4;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.logo-title {
  display: flex;
  align-items: center;
}

.logo-title img {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

.logo-title h1 {
  font-size: 24px;
  color: #333;
  margin: 0;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right label {
  margin-right: 10px;
  font-weight: bold;
  font-size: 16px;
}

.header-right input[type="text"] {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-bottom: 15px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

select {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 18px;
  color: white;
  background-color: #0b4cff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
  text-align: center;
}

.submit-button:hover {
  background-color: #319bf9;
}
