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

body {
  background-color: #0b1a3a;
  color: #fff;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  background: linear-gradient(to right, rgba(11, 26, 58, 0.9), rgba(11, 26, 58, 0.7));
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
}

.text-content {
  max-width: 45%;
}

.logo {
  width: 220px;
  margin-bottom: 20px;
}

.text-content h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.text-content .subtext {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #dcdcdc;
}

.text-content strong {
  color: #f9b233;
}

.image-content img {
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  height: auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

footer {
  background-color: rgba(5, 15, 35, 0.95);
  padding: 20px 60px;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 140px;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #ccc;
}

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

.footer-info p {
  color: #ccc;
  margin-bottom: 4px;
}

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

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    max-width: 90%;
  }

  .image-content {
    margin-top: 30px;
  }

  footer {
    text-align: center;
  }
}
