* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #222;
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: #0b1c2d;
  color: white;
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.cta-btn {
  background: #2dd4bf;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* HERO */
.hero {
  padding: 70px 0;
  background: #f5f7fb;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.hero-actions {
  margin-top: 20px;
}

.primary-btn {
  background: #2563eb;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.secondary-btn {
  background: transparent;
  border: 2px solid #2563eb;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

/* SECTIONS */
.section {
  padding: 70px 0;
}

.section.light {
  background: #f9fafb;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* STEPS */
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.step {
  background: #2563eb;
  color: white;
  padding: 12px 18px;
  border-radius: 20px;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.price-card {
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.price-card.featured {
  background: #2563eb;
  color: white;
}

.price {
  font-size: 24px;
  margin: 10px 0;
}

/* CONTACT */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-details {
  background: #f9fafb;
  padding: 25px;
  border-radius: 10px;
}

.contact-details a {
  color: #2563eb;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

/* FOOTER */
.footer {
  background: #0b1c2d;
  color: white;
  padding: 20px 0;
  text-align: center;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    gap: 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}
