* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F4F5FF;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  .coming-soon-section {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
  }
  
  .content {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .left, .right {
    flex: 1 1 50%;
    padding: 40px;
  }
  
  .left {
    background-color: #ecebff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .illustration {
    max-width: 100%;
    height: auto;
    width: 250px;
  }
  
  .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
    padding-right: 40px;
    padding-left: 40px;
  }
  
  h1 {
    font-size: 36px;
    color: #6256CA;
    margin-bottom: 10px;
  }
  
  h2 {
    font-size: 22px;
    color: #444;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
  }
  
  input[type="text"],
  input[type="email"] {
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  }
  
  input:focus {
    border-color: #6256CA;
    outline: none;
    box-shadow: 0 0 8px rgba(98, 86, 202, 0.3);
  }
  
  button {
    background-color: #6256CA;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  button:hover {
    background-color: #7c70e3;
    transform: translateY(-2px);
  }
  
  button:active {
    background-color: #4b3ca6;
    transform: translateY(0);
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .left, .right {
      flex: 1 1 100%;
      text-align: center;
      padding: 30px 20px;
    }
  
    form {
      margin: 0 auto;
    }

    .right h3 {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
      }
  }
  