* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.container {
  max-width: 1300px;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.layout {
  display: flex;
  align-items: center;
  gap: 40px;
}

.image-box {
  flex: 1;
}

.image-box img {
  width: 70%;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.content {
  flex: 1;
}

.logo {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #f9d423;
}

.tagline {
  font-size: 16px;
  letter-spacing: 1px;
  color: #e0e0e0;
  margin-bottom: 35px;
}

h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

h1 span {
  color: #f9d423;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #f1f1f1;
}

.divider {
  width: 80px;
  height: 4px;
  background: #f9d423;
  margin: 25px auto;
  border-radius: 10px;
}

.contact-box {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 18px;
}

.contact-box a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 30px;
}

.contact-box a:hover {
  color: #f9d423;
}

.footer {
  margin-top: 40px;
  font-size: 14px;
  color: #cccccc;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  .logo {
    font-size: 26px;
  }
  p {
    font-size: 16px;
  }
}

/* ===================== Mobile View Styles ===================== */
@media (max-width: 768px) {
  /* Hide the image */
  .image-box {
    display: none;
  }

  /* Stack content in single column */
  .layout {
    flex-direction: column;
    gap: 20px;
  }

  .container {
    max-width: 95%;
    padding: 30px 20px;
    border-radius: 15px;
  }

  /* Adjust font sizes */
  .logo {
    font-size: 26px;
  }

  .tagline {
    font-size: 14px;
    margin-bottom: 25px;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  h1 span {
    font-size: 32px;
  }

  p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .contact-box {
    font-size: 16px;
    gap: 10px;
  }

  .divider {
    width: 60px;
    height: 3px;
    margin: 20px auto;
  }

  .footer {
    font-size: 12px;
    margin-top: 25px;
  }
}
