
body {
  background-color: #e6faff; /* light blue */
  color: #1e3a5f; /* deep blue for text */
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(to right, #e6faff, #b8f3e6, #f9e0ae); /* gradient: blue → mint → orange */
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #a0d8e0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1e4e8c;
  padding: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.logo img {
  max-height: 50px;
  width: auto;
}

/* Horizontal Nav Links with Dividers */
.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  width: 100%;
  justify-content: center;
}

.nav-links li {
  border-left: 1px solid #a0d8e0;
  flex: 1 1 auto;
  text-align: center;
}

.nav-links li:first-child {
  border-left: none;
}

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #1e3a5f;
  font-weight: 500;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* Main Content */
main {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

h1, h2 {
  color: #1e4e8c;
  font-weight: 600;
}

ul {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: #d0f0f4;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #1e3a5f;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
  border-top: 2px solid #a0d8e0;
}

footer a {
  color: #1e7f6e;
  text-decoration: none;
}

footer a:hover {
  color: #145c4c;
}

.social-icons {
  margin-top: 0.5rem;
}

.social-icons img {
  height: 24px;
  margin: 0 5px;
}

/* Buttons */
button {
  background-color: #1e7f6e;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

button:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive Fixes for Mobile */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links li {
    border-left: none;
    border-top: 1px solid #a0d8e0;
  }

  .nav-links li:first-child {
    border-top: none;
  }
}
