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

body {
  background: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

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

/* Header */
.header {
  border-bottom: 1px solid #e5e7eb;
}

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

.logo {
  height: 100px;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #0f4da8;
  font-weight: 600;
}

/* Hero Section */
.hero {
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.hero-text h1 {
  font-size: 36px;
  color: #0f4da8;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 15px;
}

.highlight {
  font-weight: 600;
  color: #0f4da8;
}

/* CTA Section */
.hero-cta {
  background: #f9fafb;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-cta h2 {
  font-size: 32px;
  color: #0f4da8;
}

.cta-buttons {
  margin: 20px 0;
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
}

.btn.blue {
  background: #0f4da8;
}

.btn.green {
  background: #0a8a4a;
}

.services h3 {
  margin-top: 20px;
  color: #0a8a4a;
}

.services ul {
  margin-top: 10px;
  list-style: none;
}

.services li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.services li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0f4da8;
}

/* Coming Soon */
.coming-soon {
  background: #0f4da8;
  color: #2ecc71;
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
}

/* Footer */
.footer {
  background: #1e3a8a;
  color: #ffffff;
  padding: 20px 0;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer-flex {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero-text h1 {
    font-size: 28px;
  }
}
