body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #ede7f3;
    color: #241834;
  }
  
  /* Container */
  .container {
    max-width: 760px;
    margin: 80px auto 30px;
    padding: 60px;
    background: #f8f5fc;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(60, 40, 90, 0.15);
    text-align: center;
  }
  
  /* Title */
  h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #2d1745;
    cursor: pointer;
    transition: 0.2s;
  }
      
    h1:hover {
        opacity: 0.7;
    }
  
  
  /* Subtitle */
  .subtitle {
    color: #7a6c8f;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 36px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Form */
  form {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
  }
  
  input {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #d6cbe5;
    font-size: 16px;
    background: #ffffff;
  }
  
  input::placeholder {
    color: #a79bb8;
  }
  
  input:focus {
    outline: none;
    border-color: #8e73b5;
  }
  
  /* Button */
  button {
    padding: 16px 26px;
    border-radius: 12px;
    border: none;
    background: #3c1f5c;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
  }
  
  button:hover {
    background: #2b1743;
    transform: translateY(-1px);
    color:#7a6c8f
  }

  /* Result */
#result {
    margin-top: 25px;
    text-align: center;
  }
  
  .plan-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 18px;
    text-align: center;
  }
  
  /* Cards */
  .plan-grid {
    display: grid;
    gap: 15px;
  }
  .plan-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid #e3d9f3;
  box-shadow: 0 6px 15px rgba(80, 60, 120, 0.08);
  text-align: left;
}
  
  .plan-card h3 {
    margin: 0 0 6px;
    font-size: 14px;
    color: #5b3a8c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
  }
  
  .plan-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #2b1845;
    text-align: left;
  }
  
  /* Loading */
  .loading {
    font-size: 16px;
    color: #7a6c8f;
  }
  
  /* Footer */
  footer {
    text-align: center;
    font-size: 14px;
    color: #7a6c8f;
    margin: 30px 0;
  }
  
  footer a {
    color: #4b2c73;
    text-decoration: none;
    font-weight: 600;
  }
  
  footer a:hover {
    text-decoration: underline;
  }