body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #222;
  line-height: 1.6;
}

header {
  background: #8B1D2C;
  color: white;
  padding: 30px 20px;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}


.container {
  max-width: 1000px;
  margin: auto;
}

.logo {
  height: 145px;
}

main {
  max-width: 1000px;
  margin: auto;
  padding: 30px 20px;
}

h1, h2, h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.card {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 6px;
  background: #fafafa;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

a {
  color: #8B1D2C;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 20px;
  background: #f3f3f3;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.25;
}

.card h3 a {
  color: #8B1D2C;
  text-decoration: none;
}

.card h3 a:hover {
  text-decoration: underline;
}

.card p {
  font-size: 13px;
  color: #666;
}
