/* RESET + BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 80%);
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* HEADER / NAVBAR */
header {
  width: 100%;
  background: #ffffffee;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eaeaea;
  padding: 12px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  color: #f24b0b;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  color: #222;
  font-size: 15px;
  transition: color 0.25s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #f24b0b;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #f24b0b;
}

nav a:hover::after {
  width: 100%;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 80px 20px 60px;
  animation: fadeDown 1s ease;
}

.hero-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.hero-logo {
  width: 85px;
  height: 85px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero h1 {
  font-family: 'Baloo 2', cursive;
  font-size: 60px;
  color: #f24b0b;
  line-height: 1.1;
}

.hero-subtext {
  font-size: 1.1rem;
  color: #444;
  margin-top: 10px;
}

/* CONTENT SECTIONS */
.section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 25px;
  text-align: left;
}

.section h2 {
  font-family: 'Baloo 2', cursive;
  color: #007a52;
  font-size: 28px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 3px;
  background: #f24b0b;
  margin-top: 6px;
  border-radius: 3px;
}

.section p {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
  line-height: 1.7;
}

/* ✅ CLEAN BULLET LIST STYLE */
.section ul {
  margin-top: 12px;
  margin-left: 25px;
  padding-left: 15px;
  list-style: none;
}

.section li {
  position: relative;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin: 8px 0;
  padding-left: 25px;
}

.section li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f24b0b;
  font-weight: bold;
  font-size: 20px;
}

/* FOOTER */
footer {
  margin-top: auto;
  background: #ffffffee;
  border-top: 1px solid #eaeaea;
  padding: 25px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

/* ANIMATIONS */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header { flex-direction: column; gap: 10px; }
  .hero h1 { font-size: 44px; }
  .section { margin: 40px auto; }
  .section h2 { font-size: 22px; }
  .hero-logo { display: none; } /* hides logo on mobile */
}
