   body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 20px;
      background-color: #f9f9f9;
      color: #333;
    }

    .container {
      max-width: 800px;
      margin: auto;
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    }
.redirect-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #9187cc, #15aabf);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(83, 208, 224, 0.4);
  position: relative;
  
  overflow: hidden;
}

.redirect-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(252, 2, 2, 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(78, 161, 172, 0.6);
  transform: translateY(-2px);
}
    h1, h2 {
      color: #2c3e50;
    }

    p, ul {
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .language-buttons {
      text-align: right;
      margin-bottom: 10px;
    }

    .language-buttons button {
      padding: 8px 16px;
      margin-left: 10px;
      border: none;
      border-radius: 5px;
      background-color: #3498db;
      color: white;
      cursor: pointer;
    }

    .language-buttons button:hover {
      background-color: #2980b9;
    }

    .roadmap-box {
      margin-top: 40px;
      background: #ecf0f1;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .roadmap-box img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      border: 1px solid #ccc;
    }

    .roadmap-box h1 {
      margin-top: 15px;
      font-size: 1.5rem;
      color: #2c3e50;
    }
.feature-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.img {
  text-align: center;
  margin-bottom: 20px;
}

    .lang {
      display: none;
    }

    .lang.active {
      display: block;
    }

    .section-box {
      background-color: #ffffff;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    @media (max-width: 600px) {
      body {
        padding: 10px;
      }

      .container {
        padding: 20px;
      }

      .roadmap-box h1 {
        font-size: 1.2rem;
      }
    }