body {
  font-family: 'Inter', sans-serif;
  background-color: #FFFCFB;
  margin: 0;
  color: #0A0A0A;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.site-header {
  background-color: #093FB4;
  color: white;
  padding: 20px 0;
}

.site-header .logo {
  font-size: 2em;
  font-weight: 700;
  margin: 0;
}

.nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 60px 0;
  text-align: center;
  background-color: #FFD8D8;
  border-radius: 10px;
  margin: 30px 0;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #333;
}

.articles h2, .facts h2 {
  margin-top: 40px;
  font-size: 1.8rem;
  border-left: 5px solid #ED3500;
  padding-left: 10px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: white;
  border: 1px solid #FFD8D8;
  border-radius: 10px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card h3 a {
  text-decoration: none;
  color: #093FB4;
}

.card .read-more {
  display: inline-block;
  margin-top: 10px;
  color: #ED3500;
  text-decoration: none;
  font-weight: bold;
}

.facts-list {
  list-style: none;
  padding: 0;
  background-color: #FFF3F3;
  border: 1px solid #FFD8D8;
  border-radius: 10px;
  margin: 20px 0;
  padding: 20px;
}

.facts-list li {
  padding: 10px 0;
  border-bottom: 1px solid #FFD8D8;
  font-size: 1rem;
}

.facts-list li:last-child {
  border-bottom: none;
}

.site-footer {
  background-color: #093FB4;
  color: white;
  padding: 40px 0;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer h4 {
  margin-bottom: 10px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

.site-footer p {
  font-size: 0.9rem;
  margin-top: 10px;
  opacity: 0.7;
}
