*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #f7fafc;
}

a {
  color: #1d4ed8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title a {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: #111827;
}

.site-subtitle {
  font-size: 0.8rem;
  color: #6b7280;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
}

nav a.active {
  color: #1d4ed8;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

.hero {
  background: linear-gradient(135deg, #e0f2fe, #eff6ff);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.5rem;
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.hero p {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: #4b5563;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background-color: #dbeafe;
  color: #1d4ed8;
}

.hero-map iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.section p {
  margin-top: 0;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background-color: #ffffff;
  border-radius: 0.85rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
}

.list-inline li::before {
  content: "• ";
  color: #9ca3af;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.breadcrumbs a {
  color: #6b7280;
}

.breadcrumbs span {
  margin: 0 0.25rem;
}

.cta-box {
  background-color: #eff6ff;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  border: 1px solid #dbeafe;
  margin: 1.25rem 0;
}

.cta-box strong {
  color: #1d4ed8;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.cta-link span {
  font-size: 0.95rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.5rem;
}

.sidebar {
  font-size: 0.9rem;
}

.sidebar-box {
  background-color: #ffffff;
  border-radius: 0.85rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.sidebar-box h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

table.directory {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

table.directory th,
table.directory td {
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0.6rem;
  text-align: left;
}

table.directory th {
  background-color: #f9fafb;
  font-weight: 600;
}

footer {
  border-top: 1px solid #e5e7eb;
  background-color: #ffffff;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.25rem 1rem 2rem;
  font-size: 0.85rem;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  color: #4b5563;
}

@media (max-width: 800px) {
  .hero,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  nav ul {
    gap: 0.5rem;
  }
}
