
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}

.logo {
  max-width: 300px;
  margin-bottom: 40px;
}

.bottom-layout {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
}

.form-section {
  flex: 1;
  border: 2px solid #006633;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-sizing: border-box;
}

.form-section input[type=text],
.form-section input[type=email],
.form-section textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-section textarea {
  resize: vertical;
}

.form-section input[type=submit] {
  background-color: #006633;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.form-section input[type=submit]:hover {
  background-color: #004d26;
}

.info-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 10px;
}

.message {
  font-size: 20px;
  margin-bottom: 1.2em;
}

.contact-info {
  font-size: 16px;
  color: #444;
}

.contact-info strong {
  display: block;
  font-size: 20px !important;
  margin-bottom: 0.5em;
}
.confirmation {
  color: green;
  margin-top: 24px; 
  font-size: 16px;  
  font-weight: normal;
}
