body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #114196;
  color: #fff;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #114196;
}
p {
  text-align: justify;
  margin-top: 0;
}
h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 40px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.logo {
  color: #c683ff;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  line-height: 1;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

select {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolygon fill='%23faab32' points='0,0 16,0 8,16'/%3E%3C/svg%3E") no-repeat right 0.5rem center/8px 10px;
  color: #fff;
}

select:focus {
  border-color: #faab32;
  outline: none;
}

select option {
  background-color: #114196;
  color: #fff;
}

select option:checked {
  background-color: #faab32;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

button[type="submit"] {
  background-color: #faab32;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: 100%; /* Set the button width to 100% */
}

button[type="submit"]:hover {
  background-color: #faab32;
  transition: background-color 0.2s ease-in-out;
}

button[type="submit"]:focus {
  outline: none;
  box-shadow: 0px 0px 5px 2px rgba(198, 131, 255, 0.5);
}
.footer {
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    padding: 20px;
    background-color: #114196;
}


.logo {
  max-width: 80%;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

.subtitle {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
/* Text Container */
.text-container {
  margin: 0 auto;
  max-width: 800px;
  text-align: justify;
  font-size: 18px;
  line-height: 1.6;
  padding: 20px;
  background-color: #114196;
}

strong {
	color: #faab32;
}

/* About Page Heading */
.about-heading {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* About Page Subheading */
.about-subheading {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* About Page Paragraphs */
.about-paragraph {
  text-indent: 50px;
  margin-bottom: 20px;
}

/* About Page Image */
.about-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}
