body {
  background-color: #020024;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.contact-section {
  padding: 80px 10%;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #ccc;
}

.contact-info ul {
  list-style: none;
  padding-left: 0;
}

.contact-info li {
  margin-bottom: 10px;
  color: #aaa;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form button {
  background-color: #1e90ff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #006cd8;
}

.highlight {
  color: #1e90ff;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
}
