/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 72px; /* Adjusted for fixed nav height */
}

a {
  color: #ffd54f;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff176;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #1f1f1f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  z-index: 1000;
  height: 72px;
}

.logo {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  color: #ffd54f;
  cursor: default;
}

.menu {
  display: flex;
  gap: 2rem;
  font-weight: 500;
  font-size: 1rem;
}

.menu a {
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* One Unified Page Container (used for main content) */
.main-page-box {
  background-color: #1f1f1f;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  padding: 2rem;
  max-width: 1300px;
  margin: 0 auto; /* Adjusted to 0 auto for vertical centering if needed on other pages */
}

/* Section Layout (general) */
section {
  padding: 4rem 2rem;
  margin-bottom: 2rem;
}

section h2 {
  font-weight: 600;
  font-size: 2.5rem;
  color: #ffd54f;
  text-align: center;
  margin-bottom: 2rem;
}

section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #fff9c4;
}

/* Content Sections (general structure for full-width content) */
.content-section {
  width: 100%;
  background-color: #1f1f1f;
  padding: 4rem 2rem;
  margin: 0; /* Ensures full width without side margins */
  border-top: 1px solid #292929; /* Adds a subtle top border */
  position: relative; /* For the blurred divider */
  z-index: 1; /* Ensures content is above divider */
}

.content-inner {
  max-width: 1200px; /* Adjust as needed for inner content width */
  margin: 0 auto;
  text-align: center;
}

/* Add blurred golden divider between sections */
.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

/* Styled checklist (general) */
.checklist {
  list-style: none;
  padding: 0;
  max-width: 900px; /* Max width for checklist */
  margin: 2rem auto;
  font-size: 1.25rem;
  color: #fff9c4;
  text-align: left;
  line-height: 2;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ffd54f;
  font-weight: bold;
  font-size: 1.3rem;
}

/* Footer */
footer {
  background-color: #121212;
  color: #fcfbed;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #222;
  margin-top: auto; /* Pushes footer to the bottom */
}

/* Responsive Fixes (general) */
@media (max-width: 900px) {
  nav {
    padding: 1.5rem 1.5rem;
  }
  section {
    padding: 3rem 1.5rem;
  }
  section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 500px) {
  .menu {
    gap: 1rem;
    font-size: 0.9rem;
    
  }
  nav {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 0rem 0rem;
    height: 200px;

  }
  .logo {
    margin-bottom: 0rem;
    
  }
  
  .menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: -500px;
    
  }
  .menu a {
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
  }

  



}



