body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f9fafb;
  color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  max-width: 600px;
  text-align: center;
  padding: 40px 20px;
}

.logo-transition {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.hivid-logo {
  max-width: 140px;
  height: auto;
  opacity: 0.85;
}

.jmprotech-logo {
  max-width: 220px;
  height: auto;
}

.arrow {
  font-size: 28px;
  color: #3a3a3a;
}

h1 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #1EA7E0;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #178bbd;
}

.contact-line {
  margin-top: 30px;
  font-size: 14px;
  color: #777777;
}

.contact-line a {
  color: #1EA7E0;
  text-decoration: none;
}

@media (max-width: 480px) {
  .logo-transition {
    flex-direction: column;
  }
  .arrow {
    transform: rotate(90deg);
  }
}