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

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header Styling */
header {
  background-color: #4caf50;
  color: white;
  padding: 1rem 2rem;
}

nav ul {
  display: flex;
  justify-content: flex-end;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: white;
  font-size: 1.2rem;
}

/* Contact Us Section Styling */
#contact-us {
  padding: 3rem 1rem;
  background-color: #fff;
  text-align: center;
}

#contact-us h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#contact-us p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

#contact-us form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.form-group textarea {
  resize: vertical;
}

button {
  padding: 0.8rem 2rem;
  background-color: #0073e6;
  color: white;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #005bb5;
}

#contact-us h2 {
  font-size: 2rem;
  margin: 2rem 0;
  color: #0073e6;
}

#contact-us a {
  color: #0073e6;
  text-decoration: underline;
}

/* Footer Section Styling */
footer {
  background-color: #4caf50;
  color: white;
  padding: 1rem;
  text-align: center;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  margin: 0 1rem;
  color: white;
  font-size: 1rem;
}

footer p {
  font-size: 0.9rem;
}

/* Mobile Styling */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  #contact-us h1 {
    font-size: 2rem;
  }

  #contact-us h2 {
    font-size: 1.6rem;
  }

  #contact-us p,
  .form-group label {
    font-size: 1rem;
  }

  button {
    padding: 0.6rem 1.8rem;
  }
}
