* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden; /* 🚫 NO SCROLL */
}

body {
  background: linear-gradient(135deg, #6c63ff, #8f89ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  width: 1100px;
  height: 600px;
  background: #ffffff;
  border-radius: 25px;
  display: flex;
  padding: 60px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.25);
}

/* Left Content */
.content {
  flex: 1;
  padding-right: 40px;
}

.content h1 {
  color: #6c63ff;
  font-size: 34px;
  font-weight: 700;
}

.content h2 {
  font-size: 40px;
  margin: 10px 0 20px;
}

.content p {
  font-size: 17px;
  color: #555;
  margin-bottom: 20px;
}

.content ul {
  list-style: none;
  margin-bottom: 30px;
}

.content ul li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Buttons */
.buttons button {
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 15px;
  transition: 0.3s;
}

.primary {
  background: #6c63ff;
  color: #fff;
}

.primary:hover {
  background: #574eea;
}

.secondary {
  background: transparent;
  border: 2px solid #6c63ff;
  color: #6c63ff;
}

.secondary:hover {
  background: #6c63ff;
  color: #fff;
}

/* Right Image */
.image-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-box img {
  width: 100%;
  max-width: 420px;
  animation: float 4s ease-in-out infinite;
}

/* Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Responsive (Still No Scroll) */
@media (max-width: 1200px) {
  .page {
    width: 95%;
    height: 90vh;
    flex-direction: column;
    padding: 40px;
  }

  .content {
    padding-right: 0;
  }
}
