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

body {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  background-color: #1a2612; /* Fallback dark green */
}

/* --- MAIN BACKGROUND --- */
.page-container {
  background: linear-gradient(rgba(44, 64, 31, 0.75), rgba(44, 64, 31, 0.75)),
    url("https://images.trvl-media.com/place/6106246/0f6f9d49-fded-49e3-acd3-b254c023543a.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
}

/* --- 1. NAVBAR --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.nav-links a.active {
  color: #f7d147; /* Yellow tint for active link */
  font-style: italic;
}

.btn-cta {
  background-color: #3b4e2b;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

/* --- 2. HERO SECTION --- */
.hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 30px 0;
  gap: 40px;
}

.hero-left p {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-right {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.script-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #f3ce56;
  font-size: 2.5rem;
  margin-bottom: -15px;
  z-index: 1;
}

.main-title {
  font-size: 5.5rem;
  font-weight: 900;
  text-transform: lowercase;
  line-height: 0.9;
}

/* --- 3. CARDS GRID --- */
.grid-container {
  display: flex;
  justify-content: space-around;
  gap: 0px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.card {
  background-color: #6a7f39;
  border-radius: 12px;
  flex: 1;
  /* min-width: 180px;*/
  max-width: 250px;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

/* Extra distinct style for info card */
.info-card {
  background-color: #6e7e2b;
}

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

.card h1 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

/* Info card specifics */
.quiz-text {
  font-weight: 700;
  font-size: 0.85rem;
  margin: 15px 0;
}

.info-links {
  list-style: none;
  width: 100%;
  text-align: center;
  padding-left: 15px;
  color: white;
}

.info-links li {
  margin-bottom: 8px;
  position: relative;
  color: white;
}

/* Custom white bullet points */
.info-links li::before {
  content: "•";
  color: white;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.info-links a {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
}

/* --- 4. FOOTER --- */
.footer {
  margin-top: auto;
  padding: 20px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.6);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  border-bottom: 2px solid #f4f1de;
}

nav a {
  color: #f4f1de;
  margin-right: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #dda15e;
}

.active {
  color: #dda15e;
}

.take-action {
  background: #606c38;
  padding: 12px 24px;
  border-radius: 30px;
  color: #f4f1de;
  border: none;
  cursor: pointer;
}

.take-action:hover {
  background: #7f8f45;
}
