/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #1e293b;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.3s;
}

.navbar a:hover,
.navbar .active {
    background: #2563eb;
}

/* HERO */
.privacy-hero {
    width: 100%;
    height: 220px;
    background: url("https://ssl.gstatic.com/atari/images/aristotle-header-dark.jpg");
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.privacy-hero h1 {
    color: white;
    font-size: 42px;
}

.underline {
    width: 60px;
    height: 4px;
    background: #2563eb;
    margin-top: 10px;
    border-radius: 10px;
}

/* FULL WIDTH CONTAINER */
.privacy-container {
    
    padding: 60px 8%;
}

/* TEXT */
.effective-date {
    color: #2563eb;
    margin-bottom: 20px;
    font-weight: 500;
}

.intro {
    margin-bottom: 30px;
    line-height: 1.7;
    color: #334155;
}

/* PREMIUM CARD */
.policy-box {
    width: 100%;
    padding: 50px 60px;
    border-radius: 16px;
    
}

/* HEADINGS */
.policy-box h2 {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    color: #2563eb; /* BLUE HEADINGS */
}

/* FIRST HEADING TOP FIX */
.policy-box h2:first-child {
    margin-top: 0;
}

/* PARAGRAPH */
.policy-box p {
    margin-bottom: 15px;
    color: #475569;
}

/* LIST SPACING */
.policy-box ul {
    padding-left: 22px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.policy-box li {
    margin-bottom: 10px;
    color: #334155;
}

/* NESTED LIST (SUB POINTS) */
.policy-box ul ul {
    margin-top: 8px;
}

/* BOLD TEXT (IMPORTANT POINTS) */
.policy-box strong {
    font-weight: 600;
    color: #0f172a;
}

/* LINK */
.delete-link {
    margin-top: 10px;
}

.delete-link a {
    color: #2563eb;
    font-weight: 500;
}

/* OVERALL TEXT IMPROVEMENT */
.policy-box p,
.policy-box li {
    font-size: 16px;
    line-height: 1.8;
}

/* MOBILE */
@media (max-width: 768px) {

        .navbar {
    height: auto;
    padding: 15px 0;
}

.navbar ul {
    flex-direction: column;   /* 🔥 makes it vertical */
    gap: 10px;
    align-items: center;
}

.navbar a {
    display: block;
    width: 100%;
    text-align: center;
}

    .privacy-container {
        padding: 100px 20px 40px;
    }

    .privacy-hero h1 {
        font-size: 28px;
        margin-top:100px;
    }
}