/* Reset default browser styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Define font styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* Define background colors */
body {
  background-color: #f9f9f9;
}

/* Define text colors */
h1, h2, h3, h4, h5, h6 {
  color: #333;
}

/* Define link styles */
a {
  color: #0070c0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Define header styles */
header {
  background: url('banner1.jpg') no-repeat center center;
  background-size: contain;
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #ccc;
}


header h1 {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  color: red; /* Set the color of the title to red */
}

header h1 span:nth-child(2) {
  color: green; /* Set the color of the second word to green */
}

header h1 span:nth-child(3) {
  color: white; /* Set the color of the third word to white */
}

header h1 span:nth-child(4) {
  color: blue; /* Set the color of the fourth word to blue */
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

/* Define section styles */
section {
  padding: 20px;
  margin-top: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center; /* Center the content inside the section */
}

section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

section p {
  margin-bottom: 20px;
}

/* Define list styles */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
}

/* Define form styles */
form {
  display: flex;
  flex-direction: column;
}

form label {
  font-weight: bold;
  margin-bottom: 5px;
}

form input[type="text"], form input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
}

form input[type="submit"] {
  background-color: #0070c0;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
}

/* Define footer styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

/* Define media queries */
@media (min-width: 768px) {
  header nav {
    width: 50%;
  }
  
  section {
    margin-right: 20px;
  }
}
