* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #050f24;
  color: white;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #061632;
  padding: 15px 30px;
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 60px 30px;
}

.big-shield {
  font-size: 130px;
}

.report-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background: #2d6bff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

section {
  padding: 70px 25px;
  max-width: 1000px;
  margin: auto;
}

.stats-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat {
  background: #0b224a;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.about-section, .disclosure-section {
  line-height: 1.7;
}

.report-form label {
  display: block;
  margin-top: 15px;
}

.report-form input,
.report-form select,
.report-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  margin-top: 5px;
}

.report-form button {
  margin-top: 20px;
  padding: 14px;
  background: #007bff;
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.disclaimer-section {
  background: #061632;
  border-radius: 16px;
  margin-top: 50px;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  background: #040c1c;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stats-box {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 10px;
  }
}