body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #eef2f5;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  .container {
    background-color: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
  }
  
  h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
  }
  
  textarea {
    width: 100%;
    height: 150px;
    font-size: 16px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    resize: none;
    box-sizing: border-box;
  }
  
  .info-box {
    margin-top: 20px;
    font-size: 16px;
    color: #444;
    line-height: 1.8;
  }
  
  .info-box p {
    margin: 5px 0;
  }
  