body {
    background: #eef1f5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.topbar {
    background: #1a73e8;
    padding: 15px;
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: 600;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.2);
}

.container {
    max-width: 900px;
    background: white;
    margin: 40px auto;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    color: #222;
    font-weight: 600;
}

.terms-box {
    margin-top: 25px;
    padding: 25px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #ddd;
    height: 380px;
    overflow-y: auto;
}

.terms-box h2 {
    margin-top: 20px;
    color: #333;
    font-size: 20px;
}

.terms-box p, 
.terms-box ul {
    font-size: 15px;
    color: #444;
}

.options {
    margin-top: 25px;
    display: flex;
    justify-content: space-around;
    font-size: 18px;
}

button {
    width: 100%;
    padding: 15px;
    margin-top: 30px;
    border: none;
    background: #1a73e8;
    color: white;
    font-size: 20px;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

button:enabled {
    opacity: 1;
}

button:hover:enabled {
    background: #155fc7;
}