body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 30px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

#terms-text {
    min-height: 200px;
    text-align: left;
    overflow-y: auto;
    max-height: 400px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

#generate-btn {
    display: none;
}