body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

header {
  background: linear-gradient(to right, #3a6073, #16222a);
  color: white;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  animation: fadeInDown 1s ease-in-out;
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto;
  gap: 20px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-in-out;
}

.image-section {
  flex: 1 1 50%;
  animation: fadeInLeft 1.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section {
  flex: 0 1 40%;
  animation: fadeInLeft 1.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-section img {
  width: 100%;
  height: auto;
  max-height: 750px; /* increased */
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-section {
  flex: 0 1 50%;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  animation: fadeInRight 1.2s ease-in-out;
  margin: 0 auto;
}

.form-title {
  font-size: 1.6em;
  color: #3a6073;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  animation: fadeInDown 1s ease-in-out;
}


.form-section:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 15px;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #3a6073;
  box-shadow: 0 0 8px rgba(58, 96, 115, 0.3);
  outline: none;
}

button {
  margin-top: 25px;
  padding: 14px;
  font-size: 1em;
  background-color: #3a6073;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}



button:hover {
  background-color: #294354;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
footer {
  background: linear-gradient(to right, #16222a, #3a6073);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.95em;
  font-family: 'Roboto', sans-serif;
  animation: fadeInUp 1s ease-in-out;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

footer a {
  color: #ffdd57;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff;
}
