/* RESET AND BASE SETUP */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f9fc;
  color: #222;
}

/* ===== HEADER / TOP NAVIGATION ===== */
header {
  background-color: #083d77;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* LOGO TEXT */
.logo {
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 1px;
}

/* NAVIGATION LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 4px; /* Reduced gap between navigation links */
}

.nav-links li {
  display: inline-block;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #ffc107;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #ffc107;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.about-section h1 {
  font-size: 2.8rem;
  color: #0077ff;
  margin-bottom: 30px;
  text-align: center;
}

.content-box {
  margin-bottom: 40px;
  background-color: #fff;
  padding: 25px 30px;
  border-left: 6px solid #0077ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.content-box h2 {
  font-size: 1.6rem;
  color: #083d77;
  margin-bottom: 10px;
}

.content-box p,
.content-box li {
  font-size: 1rem;
  color: #333;
}

.content-box ul {
  padding-left: 20px;
  margin-top: 10px;
}
