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

/* Skip-Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #dc1a30;
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
  font-size: 14px;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

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

.accent-bar {
  height: 5px;
  background: #dc1a30;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: #fff;
  padding: 40px 0 32px;
  text-align: center;
}

header h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222;
}

header p.subtitle {
  margin-top: 4px;
  font-size: 14px;
  color: #595959;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Main */
main {
  background: #fff;
  padding: 0 0 48px;
}

.intro {
  padding: 24px 0 32px;
  border-bottom: 1px solid #eee;
}

.intro p {
  font-size: 16px;
  color: #555;
  text-align: center;
}

/* Card sections */
.card-section {
  padding: 28px 0;
  border-bottom: 1px solid #eee;
}

.card-section:last-child {
  border-bottom: none;
}

.card-section h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #dc1a30;
  margin-bottom: 12px;
}

.card-section p {
  font-size: 15px;
  margin-bottom: 4px;
}

.card-section a {
  color: #dc1a30;
  text-decoration: underline;
}

.card-section a:hover {
  text-decoration: none;
}

/* Footer */
footer {
  background: #2a2a2a;
  color: #999;
  padding: 24px 0;
  font-size: 13px;
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

footer a:hover {
  color: #fff;
}

/* Focus styles */
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #dc1a30;
  outline-offset: 2px;
}

@media (max-width: 600px) {
  header h1 { font-size: 22px; }
  footer .footer-inner { flex-direction: column; text-align: center; }
}
