/* Reset some default spacing */
body, p, h1, h3 {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

footer {
  background-color: black;
  color: #fff;
  padding: 40px 20px 20px;
}

.footerContainer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align content to top */
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left, .footer-right {
  flex: 1;
  min-width: 300px;
  margin: 20px;
  font-size: 16px; /* Normalize font size */
  line-height: 1.6;
}

/* Left side */
.footer-left h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 10px 0;
}

.footer-left a {
  color: #4da3ff;
  text-decoration: none;
}

.socialIcons {
  margin-top: 15px;
}

.socialIcons a {
  color: white;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s;
}

.socialIcons a:hover {
  color: #4da3ff;
}

/* Right side - feedback form */
.footer-right h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-right form {
  display: flex;
  flex-direction: column;
  font-size: 16px;
}

.footer-right input,
.footer-right textarea {
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  resize: none;
  font-size: 16px;
}

.footer-right button {
  background-color: #4da3ff;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
}

.footer-right button:hover {
  background-color: #3a91e0;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #444;
  font-size: 14px;
  color: #bbb;
}
