header {
  background: #2c3e50;
  padding: 15px 0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  margin: auto;
  height: 80px;
  font-size: large;
}
.logo {
  color: #fff;
  font-size: 1.5em;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #f1c40f;
}
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9em;
}
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');
/* Contact Section */
.contact-section {
  background-color: #f2f7ff;
  padding: 60px 20px;
  text-align: center;
}

.contact-section .container {
  max-width: 700px;
  margin: auto;
}

.contact-section h2 {
  font-size: 2.5em;
  color: #004aad;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 15px;
}

.contact-info p {
  margin: 8px 0;
  font-weight: bold;
}

.contact-info a {
  color: #0073e6;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  padding: 12px;
  background-color: #004aad;
  color: white;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

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