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

body {
  font-family: Arial, sans-serif;
  background-color: #f0f4f8;
  color: #333;
  min-height: 100vh;
}

nav {
  background-color: #2d6a4f;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

nav ul li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 16px;
  font-size: 0.9em;
  transition: background-color 0.2s;
}

nav ul li a:hover {
  background-color: #1b4332;
}

nav ul li a.active {
  background-color: #1b4332;
  font-weight: bold;
}

.page-wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px 60px;
}

.hero {
  background-color: #2d6a4f;
  color: white;
  text-align: center;
  padding: 50px 20px;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 2.2em;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1em;
  opacity: 0.9;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.card h2 {
  color: #2d6a4f;
  margin-bottom: 14px;
  font-size: 1.4em;
}

.card h3 {
  color: #40916c;
  margin: 18px 0 8px;
  font-size: 1.1em;
}

.card p {
  line-height: 1.7;
  margin-bottom: 12px;
  color: #444;
}

.card ul {
  padding-left: 22px;
  margin-bottom: 12px;
}

.card ul li {
  line-height: 1.8;
  color: #444;
}

.info-box {
  background-color: #d8f3dc;
  border-left: 4px solid #2d6a4f;
  border-radius: 6px;
  padding: 16px 20px;
  margin: 16px 0;
}

.info-box p {
  margin: 0;
  color: #1b4332;
  font-weight: bold;
}

.warning-box {
  background-color: #fff3cd;
  border-left: 4px solid #e6a817;
  border-radius: 6px;
  padding: 16px 20px;
  margin: 16px 0;
}

.warning-box p {
  margin: 0;
  color: #7d4e00;
}

.crisis-box {
  background-color: #f8d7da;
  border-left: 4px solid #c0392b;
  border-radius: 6px;
  padding: 16px 20px;
  margin: 16px 0;
}

.crisis-box p {
  margin: 0;
  color: #7b1e1e;
  font-weight: bold;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.condition-tile {
  background-color: #2d6a4f;
  color: white;
  border-radius: 10px;
  padding: 22px 16px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.2s, transform 0.1s;
}

.condition-tile:hover {
  background-color: #1b4332;
  transform: translateY(-2px);
}

.condition-tile .icon {
  font-size: 2em;
  display: block;
  margin-bottom: 8px;
}

.resource-link {
  display: block;
  padding: 12px 16px;
  margin-bottom: 10px;
  background-color: #f0f4f8;
  border-radius: 8px;
  text-decoration: none;
  color: #1a6b9a;
  border: 1px solid #cce0ef;
  transition: background-color 0.2s;
}

.resource-link:hover {
  background-color: #dbeafe;
}

.resource-link strong {
  display: block;
  margin-bottom: 2px;
  color: #1a4d70;
}

.resource-link span {
  font-size: 0.88em;
  color: #555;
}

.hotline-card {
  background: white;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  gap: 20px;
}

.hotline-number {
  font-size: 1.3em;
  font-weight: bold;
  color: #2d6a4f;
  white-space: nowrap;
}

.hotline-info strong {
  color: #1b4332;
  display: block;
  margin-bottom: 4px;
}

.hotline-info p {
  margin: 0;
  font-size: 0.9em;
  color: #555;
}

.tip-list {
  list-style: none;
  padding: 0;
}

.tip-list li {
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tip-list li .tip-icon {
  font-size: 1.5em;
  flex-shrink: 0;
}

.tip-list li .tip-text strong {
  display: block;
  margin-bottom: 4px;
  color: #2d6a4f;
}

.tip-list li .tip-text p {
  margin: 0;
  font-size: 0.93em;
  color: #555;
  line-height: 1.6;
}

footer {
  background-color: #1b4332;
  color: #b7e4c7;
  text-align: center;
  padding: 24px 20px;
  font-size: 0.88em;
  margin-top: 60px;
}

footer a {
  color: #74c69d;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer p {
  margin-bottom: 6px;
}
