body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;

    display: flex;
    flex-direction: column;
    /* stack content vertically */
    min-height: 100vh;
    /* full viewport height */
}

.privacy-container {
    background-color: #ececec;
    color: #222;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    line-height: 1.6;

    margin: 40px auto;
    /* vertical spacing from top/bottom */
}

footer {
    background-color: #1e1e1e;
    color: #ccc;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    margin-top: auto;
    /* pushes footer to bottom */
}

footer a {
    color: #ff9800;
    /* warm orange accent */
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #ffd180;
    /* lighter orange on hover */
}