/* ---------------------------------
   Reset & Base Styles
----------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.7;
}

/* ---------------------------------
   Header / Navbar
----------------------------------- */
.navbar {
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d9251d;
  letter-spacing: 0.3px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #d9251d;
}

/* ---------------------------------
   Hero Section
----------------------------------- */
.hero {
  background: linear-gradient(135deg, #e52e2e, #9a0e0e);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero-content {
  max-width: 750px;
  margin: auto;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background-color: #fff;
  color: #d9251d;
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

/* ---------------------------------
   Main Content
----------------------------------- */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto;
}

main h2 {
  font-size: 2rem;
  color: #d9251d;
  margin-bottom: 20px;
  font-weight: 700;
}

main h3 {
  color: #b71a12;
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 12px;
  font-weight: 600;
}

main p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #444;
}

main ul {
  margin: 15px 0 25px 30px;
  list-style: disc;
}

main li {
  margin-bottom: 10px;
  color: #555;
}

a {
  color: #d9251d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------------------------------
   Footer
----------------------------------- */
footer {
  background-color: #fafafa;
  text-align: center;
  padding: 25px 10px;
  color: #777;
  font-size: 0.95rem;
  border-top: 1px solid #eee;
  margin-top: 60px;
}

/* ---------------------------------
   Responsive
----------------------------------- */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 25px;
  }
}
