html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
}

body {
    font-family: 'Poppins', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    letter-spacing: 1px;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ─── HERO SECTION (UPGRADED) ─── */

.hero-section {
    position: relative;
    text-align: center;
    padding: 20px;

    width: 100%;
    max-width: 100%;
    min-width: 100%;

    margin: 0;
    margin-bottom: 20px;

    border-radius: 0;

    background: linear-gradient(135deg,
            rgba(205, 201, 237, 0.6),
            rgba(191, 228, 245, 0.6));

    box-shadow: none;
    font-family: 'poppins', system-ui, sans-serif;
    box-sizing: border-box;
}

/* Content layer */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Title */
.hero-section h1 {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;

    color: #000;
    /* ✅ pure black */
    font-family: 'Poppins', system-ui, sans-serif;

    /* ❌ remove these if present */
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

/* Subtext */
.hero-subtext {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 1rem;
    color: #060606;
    opacity: 0.9;
    line-height: 1.5;
}

/* Button */
.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.8rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', system-ui, sans-serif;
    transition: all 0.3s ease;
}

.hero-button.primary {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;

    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.hero-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Privacy Container ─── */
.privacy-container {
    font-family: 'Poppins', system-ui, sans-serif;
    letter-spacing: 0px;
    background: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
    padding: 20px 30px;
    max-width: 80%;
    min-width: 80%;
    margin: 10px auto;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.privacy-container:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* ─── Privacy Title ─── */
.privacy-title {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    color: #0a0a0a;
    letter-spacing: 0.5px;
}

/* ─── Card ─── */
.card {
    background-color:  rgb(191 228 245 / 50%);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 15px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.08);
    width: 80%;
    align-items: center;
    margin-left: 10%;
    margin-top: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card h2 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.card p {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 550;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.card ul {
    font-family: 'Poppins', system-ui, sans-serif;
    padding-left: 1.1rem;
    list-style: none;
    padding-left: 0;
}

.card ul li {
    font-family: 'Poppins', system-ui, sans-serif;
    position: relative;
    padding-left: 24px;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #0a0a0a;
    line-height: 1.5;
}

.card ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-color: rgba(191, 228, 245, 0.7);
    color: #1a1a1a;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* ─── Responsive: 768px ─── */
@media screen and (max-width: 768px) {
    .hero-section {
        padding: 1rem 0.75rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-section h1 {
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
    }

    .hero-subtext {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }

    .hero-note {
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
    }

    .hero-button {
        padding: 0.375rem 1.1rem;
        font-size: 0.825rem;
    }

    .privacy-container {
        padding: 8px;
        margin: 8px auto;
        max-width: 95%;
        min-width: unset;
        border-radius: 20px;
    }

    .privacy-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .card {
        padding: 8px;
        margin-bottom: 4px;
        border-radius: 10px;
    }

    .card h2 {
        font-size: 12px;
        margin-bottom: 1px;
    }

    .card p {
        font-size: 9px;
    }

    .card ul li {
        font-size: 9px;
    }

    .card strong {
        font-size: 9px;
    }
}

/* ─── Responsive: 480px ─── */
@media screen and (max-width: 480px) {
    .hero-section {
        padding: 0.5rem 0.375rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 0.75rem;
    }

    .hero-section h1 {
        font-size: 0.75rem;
        text-align: left;
    }

    .hero-subtext {
        font-size: 0.6rem;
        text-align: left;
    }

    .hero-note {
        font-size: 0.6rem;
    }

    .hero-button {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .privacy-container {
        padding: 8px;
        margin: 4px auto;
        max-width: 90%;
        min-width: unset;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .privacy-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .card {
        padding: 6px;
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .card h2 {
        font-size: 12px;
        margin-bottom: 1px;
    }

    .card p {
        font-size: 9px;
        margin-bottom: 5px;
    }

    .card ul li {
        font-size: 9px;
    }

    .card strong {
        font-size: 9px;
    }
}