    :root {
      --primary: #005b96;
      --light-bg: #f9f9f9;
      --accent-bg: #e6f2ff;
      --text: #333;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: var(--light-bg);
      color: var(--text);
      padding: 1rem;
    }
    .redirect-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #4c6ef5, #15aabf);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(21, 170, 191, 0.4);
  position: relative;
  
  overflow: hidden;
}

.redirect-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: left 0.5s ease-in-out;
}

.redirect-button:hover::before {
  left: 130%;
}

.redirect-button:hover {
  box-shadow: 0 6px 16px rgba(21, 170, 191, 0.6);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .redirect-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}


    h1, h2, h3 {
      color: var(--primary);
    }

    h1 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }

    .section {
      background-color: white;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .example {
      background-color: var(--accent-bg);
      padding: 1rem;
      border-left: 4px solid var(--primary);
      margin: 1rem 0;
      border-radius: 8px;
    }

    ul, ol {
      list-style: none;
      padding-left: 0;
      margin-top: 0.5rem;
    }

    li {
      margin-bottom: 0.75rem;
      line-height: 1.6;
    }

    li i {
      color: var(--primary);
      margin-right: 8px;
    }

    strong {
      color: #000;
    }

    .icon {
      color: var(--primary);
      margin-right: 8px;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 1.5rem;
      }

      .section {
        padding: 1rem;
      }
    }
    .roadmap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.roadmap h1 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.step {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.step-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 4px;
}

.step-content {
  flex: 1;
}

.step-content h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.step-content ul {
  list-style: none;
  padding-left: 0;
}

.step-content li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.icon-bullet {
  color: var(--primary);
  margin-right: 8px;
  width: 20px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .step {
    flex-direction: column; /* This moves icon above text */
    padding: 1rem;
  }

  .step-icon {
    margin-bottom: 0.5rem;
  }

  .step-content h2 {
    font-size: 1rem;
  }
}

