/* GLOBAL */
body {
    margin: 0;
    font-family: "Inter", "Segoe UI", sans-serif;
    background: blanchedalmond url("../admin/images/image_3.jpg") no-repeat center 20%;
    background-size: cover;
}

/* DARK OVERLAY */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: -1;
}

/* CONTAINER */
.terms-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px;
}

/* CARD */
.terms-card {
    width: 100%;
    max-width: 800px;
    background: rgba(255,255,255,0.92);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
}

.terms-card h1 {
    text-align: center;
    color: sienna;
    margin-bottom: 10px;
    font-size: 2.4rem;
}

.updated {
    text-align: center;
    color: #4a2e1a;
    margin-bottom: 30px;
    opacity: 0.8;
}

.terms-card h2 {
    color: sienna;
    margin-top: 25px;
    margin-bottom: 10px;
}

.terms-card p {
    line-height: 1.6;
    color: #4a2e1a;
}

.terms-card a {
    color: sienna;
    font-weight: bold;
    text-decoration: none;
}

.terms-card a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .terms-card {
        padding: 25px;
    }

    .terms-card h1 {
        font-size: 2rem;
    }
}
