/* Importing Inter font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}

header {
  padding: 20px 0;
  text-align: left;
}

header h1 {
  font-size: 2.5em;
  font-weight: 600;
}

header p {
  font-size: 1.2em;
}

.about {
  flex-grow: 1;
  padding: 50px 0;
  text-align: left;
}

.about h2 {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 600;
}

.about p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0;
}

footer {
  text-align: left;
  padding: 10px 0;
  margin-top: 20px;
  flex-shrink: 0;
}

/* Support Section Styles */
.support h2 {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 600;
}

.support p {
  font-size: 1.1em;
  max-width: 700px;
  margin-bottom: 20px;
}

form {
  max-width: 600px;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

form input[type="submit"] {
  background-color: #333;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

form input[type="submit"]:hover {
  background-color: #555;
}

/* Thank-You Section Styles */
.thank-you h2 {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 600;
}

.thank-you p {
  font-size: 1.1em;
  max-width: 700px;
  margin-bottom: 20px;
}

/* Navigation Styles */
nav {
  margin-top: 20px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px; /* Space between navigation items */
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

nav ul li a:hover {
  text-decoration: underline;
}
