* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 60vh;
  background: linear-gradient(to right, #051a28, #000);
  display: flex;
  align-items: center;
  padding: 80px 10%;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  max-width: 500px;
  line-height: 1.7;
  color: #ccc;
}

/* ---------- FOOTER / CONTENT ---------- */
.footer {
  background: #0b0b0b;
  padding: 80px 10%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer p,
.footer li {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

/* CTA */
.cta-box {
  border: 1px solid #777;
  padding: 20px;
  text-align: center;
}

.cta-box a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 25px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.cta-box a:hover {
  background: #fff;
  color: #000;
}

/* ---------- BOTTOM BAR ---------- */
.bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #222;
  padding-top: 20px;
  flex-wrap: wrap;
}

.logo {
  font-size: 32px;
  font-weight: bold;
}

.social a {
  color: #fff;
  margin-left: 15px;
  font-size: 18px;
  text-decoration: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 20px;
  }

  .footer {
    padding: 60px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}