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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f4f6f8;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: #1a5276;
  color: #fff;
  padding: 40px 0 20px;
  text-align: center;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

header p {
  color: #aed6f1;
  font-size: 1rem;
  margin-bottom: 20px;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
  transition: background 0.3s;
}

nav a:hover {
  background: rgba(255,255,255,0.25);
}

main {
  padding: 40px 0;
}

section {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1a5276;
  border-left: 4px solid #1a5276;
  padding-left: 12px;
}

section p {
  color: #555;
  margin-bottom: 10px;
}

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

article {
  background: #f8fafc;
  border-radius: 6px;
  padding: 20px;
  border-left: 4px solid #2980b9;
}

article h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #1a5276;
}

article p {
  font-size: 0.95rem;
  color: #666;
}

.article-list {
  list-style: none;
  margin-top: 15px;
}

.article-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  gap: 8px;
}

.article-list a {
  color: #1a5276;
  text-decoration: none;
  font-weight: 500;
}

.article-list a:hover {
  color: #154360;
  text-decoration: underline;
}

.article-list span {
  color: #999;
  font-size: 0.85rem;
  white-space: nowrap;
}

footer {
  background: #1a5276;
  color: #aed6f1;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

footer p {
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  header h1 { font-size: 1.5rem; }
  nav a { padding: 6px 12px; font-size: 0.9rem; }
  section { padding: 20px; }
  .grid { grid-template-columns: 1fr; }
  .article-list li { flex-direction: column; align-items: flex-start; }
}
