/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: relative; /* For logo positioning */
  display: flex;
  justify-content: center; /* Keep links centered */
  align-items: center;
  padding: 15px 30px;
  background-color: #0288d1;
  border-radius: 12px;
  width: max-content; /* Shrinks navbar to content width */
  margin: 15px auto; /* Center the navbar horizontally */
}

.logo {
  position: absolute;
  left: -375px; /* Move logo to left side */
}

.logo img {
  height: 200px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 25px;
  transition: background 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
  background: #fff;
  color: #0288d1;
}

/* Hero Section */
.contact-hero {
  background: #97c0d6; /* You can change color as per theme */
  text-align: center;
  padding: 80px 20px;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1a3442;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #30596f;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  text-align: center;
  padding: 50px 20px;
}

.contact-section p {
  font-size: 1.2rem;
  color: #333;
}

.contact-section a {
  color: #30596f;
  font-weight: bold;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #0277bd;
  color: white;
  text-align: center;
  padding: 20px;
}

footer .footer-links {
  margin-top: 10px;
}

footer .footer-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

footer .footer-links a:hover {
  text-decoration: underline;
}
