* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #222;
  padding-top: 60px; /* space for fixed header */
}

/* Fixed header */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  background-color: #2c3e50;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 1000;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.logo-img {
  height: 30px;
  width: auto;
  border-radius: 8px;
}

/* Burger menu */
#menu-toggle {
  display: none;
}

/* Burger icon */
.menu-icon {
  margin-left: auto;
  font-size: 35px;
  color: white;
  cursor: pointer;
  user-select: none;
  margin-top: -10px;
}

/* Nav menu hidden by default */
.nav ul {
  list-style: none;
  flex-direction: column;
  background-color: #34495e;
  position: absolute;
  top: 60px;
  right: 0;
  width: 220px;
  display: none;
  padding: 15px;
  gap: 15px;
  z-index: 999;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: #ffcc70;
}

/* Show nav when burger is clicked */
#menu-toggle:checked + .menu-icon + .nav ul {
  display: flex;
}

/* Content */
.content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.info-section {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.info-section h1 {
  font-size: 26px;
  color: #2c3e50;
  margin-bottom: 20px;
}

.info-section h2 {
  font-size: 20px;
  color: #444;
  margin-top: 25px;
  margin-bottom: 10px;
}

.info-section p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 16px;
}

.info-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.info-section ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #2c3e50;
  color: white;
  font-size: 14px;
}
