/* ===== Header ===== */
.top-bar {
  height: 5px;
  background: #014a43;
}

.site-header {
  background: #fff;
  border-bottom: 2px solid #dcefeb;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo img {
  height: 300px;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 5px 10px;
}

.search-bar input {
  border: none;
  outline: none;
  padding: 5px;
}

.search-bar button {
  border: none;
  background: none;
  cursor: pointer;
  color: #00897B;
}

.social-icons a {
  margin-left: 10px;
  font-size: 1.4em;
  color: #00897B;
}

.main-nav {
  border-top: 1px solid #dcefeb;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 10px 20px;
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.main-nav a.active,
.main-nav a:hover {
  border-bottom: 2px solid #00897B;
  padding-bottom: 3px;
  color: #00897B;
}

/* ===== Footer ===== */
.site-footer {
  background: #dcefeb;
  padding: 40px 20px 0;
  color: #333;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-bottom: 10px;
  font-size: 1.1em;
  border-bottom: 2px solid #00897B;
  display: inline-block;
  padding-bottom: 4px;
  color: #014a43;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul a {
  text-decoration: none;
  color: #014a43;
}

.footer-col ul a:hover {
  color: #00897B;
}

.footer-logo {
  height: 45px;
  margin-bottom: 10px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 1.4em;
  color: #00897B;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9em;
  background: #014a43;
  color: white;
  padding: 15px;
}

