/* Common header/footer styles */
:root {
  --bg-dark: #0f292f;
  --text-main: #f0f0f0;
  --accent: #1abc9c;
}

/* Header */
.navbar {
  background: var(--accent);
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
}
.logo {
  height: 40px;
}
.navbar-links a {
  margin: 0 10px;
  color: var(--text-main);
  text-decoration: none;
  font-weight: bold;
}


/* Footer */
.footer {
  background-color: #174047;
  color: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.footer-col {
  flex: 1 1 300px;
  margin: 20px;
}
.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}
.footer p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer h4 {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.footer ul li a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .footer-col {
    margin: 0 auto;
  }
  .navbar {
    flex-direction: column;
    text-align: center;
  }
  .navbar-links {
    margin-top: 10px;
  }
}
