* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #fff;
  padding: 20px;
}

/* Container Layout */
.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;      /* <-- this centers vertically */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  height: 100vh;            /* <-- this makes it full screen */
}

/* Left Section */
.left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo */
.logo-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-f {
  width: 80px;
  height: auto;
  margin-right: 10px;
}

.text-group {
  font-size: 24px;
  line-height: 1.2;
margin-top: 50px;
margin-left: -50px;
}

.yellow-text {
  color: #f1c40f;
  font-weight: bold;
  font-size: 28px;

}

.white-text {
  color: #fff;
  font-weight: normal;
  font-size: 20px;
}

/* Description */
.description {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
}

/* App Links */
.app-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.app-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background-color: #ffffff10;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s;
}

.app-link:hover {
  background-color: #ffffff20;
}

/* Footer */
.footer-links {
  margin-top: auto;
}

.genz-text {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.genz-logo {
  width: 30px;
  height: auto;
  margin-right: 8px;
}

.legal-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  list-style: none;
}

.legal-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.legal-links a:hover {
  text-decoration: underline;
}

/* Right Section */
.right-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-image {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
}

/* RESPONSIVE MEDIA QUERY */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column-reverse;
    align-items: center;
    padding: 10px;
  }

  .left-section,
  .right-section {
    width: 100%;
    text-align: center;
  }

  .logo-wrapper {
    justify-content: center;
  }

  .app-links {
    flex-direction: column;
    align-items: center;
  }

  .legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .description {
    max-width: 100%;
  }
}