body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: #0b0f14;
}

header {
  background: white;
  border-bottom: 1px solid #dbe3ef;
  padding: 20px 32px;
}

.logo img {
  display: block;
  height: 76px;
  width: auto;
}

main {
  padding: 40px 32px;
}

.hero {
  background: white;
  border: 1px solid #dbe3ef;
  border-radius: 24px;
  padding: 40px;
  max-width: 900px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 20px;
  color: #071a33;
}

.hero p {
  font-size: 20px;
  line-height: 1.5;
  color: #4a5568;
  max-width: 700px;
}

.button {
  display: inline-block;
  margin-top: 20px;
  background: #2E6F40;
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #071a33;
  text-decoration: none;
  font-weight: 700;
}

nav a:hover {
  color: #1e6bff;
}
@media (max-width: 700px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    padding: 28px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }
}
.section {
  margin-top: 40px;
  max-width: 1100px;
}

.section-header h2 {
  font-size: 32px;
  color: #071a33;
  margin-bottom: 8px;
}

.section-header p {
  color: #4a5568;
  font-size: 18px;
}

.directory-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin-top: 24px;
}

.filters,
.location-card {
  background: white;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  padding: 24px;
}

.filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filters input[type="text"] {
  padding: 14px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  font-size: 16px;
}

.filters label {
  font-weight: 700;
  color: #071a33;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.2;
}
.filters input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.badge {
  display: inline-block;
  background: #fff3cd;
  color: #7a4b00;
  border: 1px solid #f2c94c;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}

.location-card h3 {
  font-size: 26px;
  color: #071a33;
  margin-bottom: 8px;
}

.warning {
  background: #e8f1ff;
  color: #071a33;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
}

@media (max-width: 800px) {
  .directory-layout {
    grid-template-columns: 1fr;
  }
}
.notice {
  margin-top: 24px;
  background: #f7f6f1;
  border: 1px solid #d3bc8d;
  color: #1f2933;
  padding: 18px 22px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 1.5;
}
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.card-actions a {
  background: white;
  color: #1E4620;
  border: 2px solid #1E4620;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-block;
}

.card-actions a:hover {
  background: #1E4620;
  color: white;
}

.info-section {
  background: white;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  padding: 32px;
}

.info-section h2 {
  font-size: 32px;
  color: #071a33;
  margin-top: 0;
}

.info-section p,
.info-section li {
  font-size: 18px;
  line-height: 1.6;
  color: #4a5568;
}

.info-section li {
  margin-bottom: 10px;
}
.badge.verified {
  background: #e6f7ed;
  color: #126b38;
  border-color: #7bd49b;
}

.badge.pending {
  background: #f8efd8;
  color: #5f4314;
  border-color: #d3bc8d;
}

.badge.not-confirmed,
.badge.needs-update {
  background: #f4f6f8;
  color: #4a5568;
  border-color: #cbd5e1;
}

footer {
  margin-top: 48px;
  padding: 32px;
  background: #071a33;
  color: white;
}

footer p {
  max-width: 900px;
  margin: 0 auto 10px;
  line-height: 1.5;
}

footer p:last-child {
  margin-bottom: 0;
}

.location-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-card h3 {
  margin-top: 6px;
  margin-bottom: 0;
}

.location-card p {
  margin: 0;
  line-height: 1.45;
}

.location-card .warning {
  margin-top: 6px;
}

.card-actions {
  margin-top: 8px;
}

.secondary-button {
  background: white;
  color: #1E4620;
  border: 2px solid #1E4620;
  margin-left: 10px;
}

@media (max-width: 600px) {
  main {
    padding: 24px 16px;
  }

  header {
    padding: 18px 20px;
  }

  .logo {
    font-size: 22px;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
  }

  nav a {
    font-size: 15px;
  }

  .hero {
    padding: 28px 24px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .secondary-button {
    margin-left: 0;
    margin-top: 10px;
  }

  .card-actions a {
    width: 100%;
    text-align: center;
  }
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  margin-top: 8px;
}

.card-footer .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.card-footer .badge {
  margin-left: auto;
  width: auto;
  min-width: fit-content;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  align-self: center;
  border-radius: 6px;
}

.directory-layout {
  align-items: start;
}

.filters {
  height: fit-content;
  align-self: start;
}