body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.form-container {
  max-width: 600px;
  margin: 50px auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.banner img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.form-group {
  margin: 15px 0;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input,
textarea {
  width: calc(100% - 22px); /* Adjust width for padding */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  border-color: #28a745; /* Change border color on focus */
  outline: none; /* Remove default outline */
}

button {
  width: 100%;
  padding: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #218838;
}

.hidden {
  display: none; /* Hide the success message by default */
}

#successMessage {
  text-align: center;
  margin-top: 20px;
  color: #28a745; /* Green color for success message */
  border: 1px solid #28a745;
  padding: 15px;
  border-radius: 4px;
  background-color: #e8f5e9; /* Light green background */
}

.contact-section {
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid #ccc; /* Optional top border for separation */
  padding-top: 20px;
}

.contact-section h3 {
  margin-bottom: 10px;
}

.contact-section a {
  color: #0077b5; /* LinkedIn blue color */
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline; /* Underline on hover */
}
