body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0e0e0;
    font-family: Arial, sans-serif;
}

#content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.info-box {
    width: 400px;
    padding: 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333333;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-box p {
    margin: 0;
    font-size: 1.2em;
}

.info-box a {
    color: #4CAF50;
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

#privacy-box h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

#privacy-content {
    max-height: 200px;
    overflow-y: auto;
    text-align: left;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}
