html, body {
    height: 100%;
    min-height: 100vh;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #e6e6e6;
}
main { flex: 1 0 auto; }
.site-footer { flex-shrink: 0; }
.animated-title {
    text-align: center;
    font-size: 3.2em;
    font-family: 'Days One', Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 40px;
    margin-top: 30px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    animation: fadeInTitle 1.1s cubic-bezier(.22,1,.36,1.05) forwards;
}
@keyframes fadeInTitle {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.privacy-content {
    max-width: 900px;
    margin: 0 auto 40px auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 16px;
    font-size: 1.13em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.privacy-content p {
    margin-bottom: 18px;
    font-weight: 500;
    color: #181818;
}
.privacy-content ul, .privacy-content ol {
    margin-left: 24px;
    margin-bottom: 18px;
}
.privacy-content li {
    margin-bottom: 6px;
    line-height: 1.5;
    color: #181818;
}
.privacy-content strong {
    font-weight: 700;
    color: #1730ef;
}
@media (max-width: 600px) {
    .privacy-content {
        padding: 16px 4vw;
        font-size: 1em;
    }
    .animated-title {
        font-size: 2em;
        margin-bottom: 18px;
        margin-top: 18px;
    }
    .privacy-content ul, .privacy-content ol {
        margin-left: 1.1em;
        padding-left: 1em;
    }
}

