body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

header {
  background-color: #03919b;
  color: white;
  text-align: center;
  padding: 20px 0;
}

header h1 {
  margin: 0;
}

main {
  padding: 20px;
}

section {
  margin-bottom: 20px;
}

#side-by-side-sections {
  display: flex;
  justify-content: space-between;
}

#left-section,
#right-section {
  flex-basis: 48%; /* Adjusts the width of the side-by-side sections */
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #03919b; /* Dark background for the footer */
  color: white;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer-link {
  color: white;
  text-decoration: underline;
  font-style: bold;
  padding: 10px;
  margin-top: 50px;
}

.footer-link:first-child {
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.footer-link:nth-child(2) {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  margin-top: 50px;
}
