* {
  box-sizing: border-box;
}

body {
  margin: 4;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

header {
  position: sticky;
  top: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid #1f2937;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

nav a {
  margin-left: 20px;
  color: #cbd5f5;
  font-weight: 500;
}

nav a:hover {
  color: white;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 12px 18px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid #3b82f6;
  color: #3b82f6;
  padding: 12px 18px;
  border-radius: 6px;
  margin-left: 10px;
}

.hero {
  padding: 100px 20px;
  text-align: center;
  background: radial-gradient(circle at top, #1e293b, #020617);
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #94a3b8;
}

.section {
  padding: 60px 20px;
}

.grid {
  display: grid;
  gap: 25px;
}

.card {
  background: #1e293b;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #334155;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
}

.cta {
  background: #1d4ed8;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  margin-bottom: 20px;
}

footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #1f2937;
  color: #94a3b8;
}

footer a {
  color: #ffffff; /* Sets link color to white */
  text-decoration: none; /* Removes the default underline */
}

footer a:hover {
  color: #ffcc00; /* Changes color on hover */
  text-decoration: underline; /* Adds underline back on hover */
}

.form {
  max-width: 600px;
  margin: auto;
}

.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #334155;
  background: #020617;
  color: white;
}

.form button {
  width: 100%;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

#map {
  height: 400px;
  border-radius: 10px;
  margin-top: 20px;
}