@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

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

body {
  background: #0f0f0f;
  color: #fff;
  padding: 0;
}

/* HEADER */
.header {
  width: 100%;
  padding: 18px 30px;
  background: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  color: #33ccff;
}

.login-btn {
  padding: 8px 16px;
  background: linear-gradient(90deg, #3366ff, #33ccff);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.login-btn:hover {
  opacity: 0.85;
}

/* HERO SECTION */
.hero {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.hero h1 {
  font-size: 32px;
  color: #33ccff;
  margin-bottom: 15px;
}

.hero .sub {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e6e6e6;
}

.services {
  list-style: none;
  text-align: right;
  max-width: 600px;
  margin: 0 auto 25px;
}

.services li {
  background: #1b1b1b;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  border-right: 4px solid #33ccff;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

.info-box {
  background: #1b1b1b;
  padding: 18px 20px;
  border-radius: 12px;
  margin: 25px auto;
  max-width: 650px;
  line-height: 1.8;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.final-text {
  margin-top: 25px;
  font-size: 17px;
  line-height: 1.8;
}

.cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  background: linear-gradient(90deg, #3366ff, #33ccff);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.2s;
}

.cta-btn:hover {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 26px;
  }
  .logo {
    font-size: 18px;
  }
}

