

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.contact-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
}

.contact-form, .contact-info {
  width: 45%;
}

.contact-form h2, .contact-info h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input, .contact-form textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.contact-form textarea {
  height: 100px;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover {
  background-color: #555;
}

.contact-info ul {
  list-style-type: none;
}

.contact-info ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-info ul li img {
  width: 24px;
  margin-right: 10px;
}

/* Footer Styles */
footer {
  background-color: #f8f8f8;
  padding: 20px 0;
  text-align: center;
  border-top: 2px solid #ccc;
}

header ul li:nth-child(4){
  background-color: lightgray;
}