html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
  font-family: 'Ubuntu', Arial, sans-serif;
}

/* ...existing styles... */

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Ensure container fills the viewport height */
  background-color: #f2f2f2;
  padding: 20px;
  box-sizing: border-box;
}

main {
  flex: 1; /* Let the main section grow to fill remaining vertical space */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%; /* Adjust the width to fill the container */
  max-width: 960px;
  margin-bottom: 20px;
}

section {
  flex-basis: 100%;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-top: auto; /* Push the footer to the bottom 
} 
*/
footer {
  background-color: #f2f2f2; /* Change to the desired light color */
  color: #333; /* Change to the desired text color */
  padding: 20px;
  text-align: center;
  margin-top: auto; /* Push the footer to the bottom */
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Adjust alignment */
  align-items: center;
}

.footer-left {
  text-align: left; /* Align text to the left */
  margin-right: 30px;
}

.footer-right {
  text-align: right; /* Align text to the right */
}

/* ...remaining styles... */


header {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  margin: 0;
}


h2 {
  font-size: 18px;
  margin: 0 0 10px;
}

ul {
  list-style: none;
  padding: 0;
}
.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  width: 100px;
  height: 100px;
}

.footer-links {
  text-align: right;
}

.footer-links{
  margin-bottom: 17px;
}

.social-icons {
  text-align: right;
  margin-right: 25px;
}

.social-icons a {
  display: inline-block;
  margin-left: 10px;
}

.social-icons img {
  width: 30px;
  height: 30px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
