* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f4f6fb;
  color: #333;
}

/* Header */
.header-section {
  padding: 40px 20px 30px;
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.header-section h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.header-section h3 {
  font-weight: 400;
  margin-bottom: 10px;
}

.header-section p {
  max-width: 600px;
  margin: auto;
  font-size: 14px;
  opacity: 0.9;
}

/* Search Section */
.search-section {
  position: sticky;
  top: 0;
  background: white;
  padding: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.search-section input {
  width: 320px;
  max-width: 70%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.search-section button {
  padding: 10px 20px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.search-section button:hover {
  background: #5563d6;
}

/* Result Section */
.result-section {
  padding: 30px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
}

.result-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #667eea;
}

.result-card p {
  font-size: 14px;
  margin-bottom: 6px;
}

.not-found {
  grid-column: 1 / -1;
  text-align: center;
  color: red;
  font-size: 16px;
}

/* Mobile */
@media (max-width: 600px) {
  .header-section h1 {
    font-size: 24px;
  }

  .search-section {
    flex-direction: column;
  }

  .search-section input,
  .search-section button {
    width: 100%;
    max-width: 100%;
  }
}

/* Existing styles remain same */

/* Verified (No verification required) */
.result-card.verified {
  background: #e6f8ee;
  /* light green */
  border-left-color: #2ecc71;
}

/* Default (Verification required) remains white */


/* Footer */
/* Footer */
.footer {
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 25px 15px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.footer-container h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-links a {
  background: #f4f6fb;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  color: #667eea;
  font-weight: 500;
  transition: 0.2s;
}

.footer-links a:hover {
  background: #667eea;
  color: #ffffff;
}

.footer-note {
  font-size: 13px;
  color: #777;
}

/* Ensure footer stays at bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.result-section {
  flex: 1;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
