
body {font-family: "Inter", Arial, sans-serif; margin: 0; padding: 0; background: #f4f6f8; color: #222;}
header {
  background: #333;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
header .container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;  /* Ensure the header text color is white for visibility */
}
main {
  width: 90%;
  max-width: 1100px;
  margin: 30px auto;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.card h2 {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}
.card h2 a {
  color: #222;
  text-decoration: none;
}
.card h2 a:hover {
  color: #0077cc;
}
.card p {
  color: #555;
}
.read-more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #0077cc;
  color: #fff;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.read-more:hover {
  background: #005fa3;
}
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
footer a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
