* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Icons */
.icon {
  width: 0.75rem;
  height: 0.75rem;
  fill: white; /* White color */
}

/* Top slim contact bar */
.top-contact {
  background-color: #2E6F6A;
  color: white;
  padding: 8px 0;
  font-size: 0.75rem;
  text-align: left;
}
.top-contact a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
}
.top-contact a:hover { text-decoration: underline; }

/* Main header with nav */
header.main-header {
  background-color: white;
  color: #2E6F6A;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.main-header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.main-header .contact-info-main {
  font-weight: bold;
}
.main-header .contact-info-main a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
}
.main-header .contact-info-main a:hover { text-decoration: underline; }

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
nav a {
  color: #2E6F6A;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover { text-decoration: underline; }

main { padding: 50px 0; }
h1 { color: #2E6F6A; margin-bottom: 25px; font-size: 2.4rem; }
h2 { color: #2E6F6A; margin: 45px 0 20px; font-size: 1.9rem; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.values-list { list-style: disc; padding-left: 30px; margin: 20px 0; }
.values-list li { margin-bottom: 12px; font-size: 1.1rem; }
.locations { margin-top: 30px; padding: 20px; background-color: #f0f4f8; border-radius: 8px; }
.cta { margin: 40px 0; text-align: center; }
.cta a {
  background-color: #2E6F6A;
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.1rem;
}
.cta a:hover { background-color: #2E6F6A; }

footer {
  background-color: #2E6F6A;
  color: white;
  padding: 30px 0;
  text-align: center;
}
footer a { color: white; text-decoration: none; }
footer a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .main-header .inner { flex-direction: column; text-align: center; }
  .top-contact { font-size: 0.9rem; }
}

nav a.active {
   color: #2E6F6A; 
   font-weight: bold; 
  }