body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

header {
  background: #2563eb;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav button {
  margin-left: 10px;
  padding: 5px 10px;
  border: none;
  background: white;
  color: #2563eb;
  cursor: pointer;
  border-radius: 4px;
}

.page {
  padding: 20px;
}

.hidden {
  display: none;
}

input {
  display: block;
  margin: 10px 0;
  padding: 8px;
  width: 200px;
}

button {
  padding: 8px 12px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid #ccc;
}

th, td {
  padding: 8px;
  text-align: center;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #d4fcd6, #e6ffe6);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
}

.hero-text {
  max-width: 60%;
}

.hero-text h2 {
  font-size: 2rem;
  color: #2563eb;
}

.hero-text p {
  font-size: 1.1rem;
  margin: 10px 0;
}

.hero-text .highlight {
  color: green;
  font-weight: bold;
}

.hero-text button {
  margin-top: 10px;
  background: green;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.hero-image img {
  width: 120px;
  height: auto;
}

/* Features Section */
.features {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  flex-wrap: wrap;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  width: 220px;
  text-align: center;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
  margin: 10px;
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: scale(1.05);
}

.feature-card img {
  width: 60px;
  margin-bottom: 10px;
}

/* Real map styling */
#realMap {
  height: 400px;
  width: 100%;
  border: 2px solid #2563eb;
  margin-top: 10px;
}
