/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  color: #222;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #001f3f; /* Dark Blue */
  color: #fff;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #ffc107; /* Yellow */
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #fff;
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  text-align: center;
  height: 477px;
}

.contact h1 {
  font-size: 2.5rem;
  color: #001f3f;
  margin-bottom: 30px;
}

.contact-info {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.whatsapp-button:hover {
  background-color: #128c7e;
}

/* Footer */
footer {
  background-color: #001f3f;
  color: #ffc107;
  text-align: center;
  padding: 15px 0;
  font-weight: 500;
}
