/***** deterrent only — hurts UX; optional *****/
html, body {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input, textarea {
  -webkit-user-select: text;
  user-select: text;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand: #000000;
    --brand-2: #005501af;
    --ink: #111827;
    --bg: #0b1020;
    --muted: #6b7280;
    --accent: #7c3aed;
    --glow: 0 10px 30px rgba(0, 209, 178, .35);
    --contact-bar-height: 40px;
    /* desktop */
    --nav-height: 56px;
    /* bootstrap default navbar height */
}

/* ✅ fixed selector + hard stop for horizontal overflow */
html,
body {
    overflow-x: clip;
    /* stricter than hidden, avoids 1-2px “sliver” */
    height: 100%;
    width: 100%;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
    color: var(--ink);
    background:
        radial-gradient(1200px 700px at 10% 0%, rgba(124, 58, 237, .15), transparent 60%),
        radial-gradient(900px 500px at 90% 10%, rgba(0, 209, 178, .15), transparent 60%),
        #fff;
    --contact-bar-height: 40px;
    /* default height */
}

/* For smaller screens, update the height */
@media (max-width:768px) {
    body {
        --contact-bar-height: 55px;
    }

    /* adjust if contact-bar taller */
    :root {
        --contact-bar-height: 55px;
        --nav-height: 60px;
    }
}

/* ---------- contact bar: icons only on small screens ---------- */
@media (max-width: 576px) {
    .contact-bar .link {
        font-size: 0;
        /* hide text, keep the element */
        padding: 6px 6px;
    }

    .contact-bar .link i {
        font-size: 1.2rem;
        /* show icon */
        margin-right: 0;
        /* no gap (text is hidden) */
    }
}

a {
    text-decoration: none
}

/* ======= Top contact bar ======= */
.contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    backdrop-filter: blur(8px);
    background: rgba(0, 87, 10, 0.664);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    padding: 6px 15px;
    /* make height predictable */
}

.contact-bar .link {
    color: #fff;
    font-weight: 600
}

.contact-bar .link:hover {
    color: rgb(181, 181, 181)
}

/* ======= Navbar ======= */
.navbar {
    position: fixed;
    top: var(--contact-bar-height);
    /* use CSS var */
    min-height: var(--nav-height);
    left: 0;
    width: 100%;
    z-index: 1030;
    backdrop-filter: blur(10px);
    background: rgba(0, 87, 10, 0.664);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    color: white !important;
}

.navbar-brand img {
    filter: brightness(0) invert(1)
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: .2px
}

/* make sure the Bootstrap toggler icon is visible on your dark bg */
.navbar-toggler {
    border: 0;
}

.navbar-toggler-icon {
    filter: invert(1) grayscale(100%);
    /* white icon */
}

.brand-dot {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, purple, rgba(0, 128, 0, 0.505));
    border-radius: 9999px;
    display: inline-block;
    box-shadow: var(--glow)
}

.btn-pill {
    border-radius: 9999px;
    padding: .55rem 1rem;
    font-weight: 800;
}

.btn-pill:hover {
    background: linear-gradient(135deg, #006950, #2e2e2e);
    transform: scale(1.05);
    box-shadow:
        0 15px 30px rgba(50, 93, 69, 0.35),
        0 10px 20px rgba(0, 0, 0, 0.25),
        inset 0 -2px 5px rgba(10, 64, 36, 0.5);
    border: 2px solid #fff;
    /* Added white border */
    color: white;
}

.navbar .navbar-nav .nav-link {
    color: white;
    font-weight: 700
}

.navbar .navbar-nav .nav-link:hover {
    color: rgb(205, 205, 205)
}

.btn-brand {
    position: relative;
    /* For z-index */
    z-index: 10;
    /* Above pseudo-elements */
    margin-top: 12px;
    background: linear-gradient(60deg, #000, #027b2e);
    color: #fff;
    padding: 10px;
    border-radius: 20px 0px 20px 0px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background: linear-gradient(135deg, #006950, #2e2e2e);
    transform: scale(1.05);
    box-shadow:
        0 15px 30px rgba(50, 93, 69, 0.35),
        0 10px 20px rgba(0, 0, 0, 0.25),
        inset 0 -2px 5px rgba(10, 64, 36, 0.5);
    border: 2px solid #fff;
    /* Added white border */
}

/* Navbar cart badge */
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    display: none;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 9999px;
    background: #ff4757;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    align-items: center;
    justify-content: center;
}

/* ======= Hero ======= */
.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #0f172a;
    /* margin-top: calc(var(--contact-bar-height) + var(--nav-height)); */
    margin-top: 50px;
}

.hero .headline {
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(90deg, #007f11, #ff0080, #0228ff);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 2px 12px 15px rgba(0, 0, 0, 0.555);
    font-size: 2.5rem;
}

.hero .sub {
    color: #585858;
    /* slate-600 */
}

.shape {
    position: absolute;
    filter: blur(40px);
    opacity: .5;
    mix-blend: screen;
    border-radius: 9999px;
}

.shape.one {
    width: 420px;
    height: 420px;
    background: #ffd6e7;
    top: -80px;
    right: -120px;
    animation: floaty 12s ease-in-out infinite;
}

.shape.two {
    width: 320px;
    height: 320px;
    background: #bfe6ff;
    bottom: -90px;
    left: -80px;
    animation: floaty 10s ease-in-out -2s infinite;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.search-wrap {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 10px;
}

.search-wrap input {
    background: transparent;
    border: none;
    color: #0f172a;
}

.search-wrap input::placeholder {
    color: #64748b;
}

.hero .search-wrap+.btn,
.hero .search-wrap button.btn {
    box-shadow: 0 6px 20px rgba(5, 98, 26, 0.331);
    background: linear-gradient(60deg, #a78bfa, #7dd3fc);
}

.hero .search-wrap+.btn:hover,
.hero .search-wrap button.btn:hover {
    filter: brightness(1.02);
    color: white;
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(90deg, #7dd3fc, #f9a8d4);
    box-shadow: 0 14px 28px rgba(249, 168, 212, 0.28);
}

/* ======= Hero Background Image ======= */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the area without distortion */
    z-index: 1;
    /* Behind content but above shapes */
    filter: brightness(0.9);
    /* Optional: Adjust brightness for readability */
}

/* ======= Hero Form ======= */
.hero-form {
    background: rgba(255, 255, 255, 0.466);
    border: 2px solid rgba(255, 255, 255, 0.756);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.10);
    animation: floatIn 1s ease forwards;
    transform: translateY(20px);
    opacity: 0;
    z-index: 2;
    /* Ensure form stays above image */
}

.hero-form h3 {
    background: linear-gradient(90deg, #2b8001, #ff00b7, #0008ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.hero-form input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #64748b !important;
    border-radius: 12px;
    transition: .3s ease;
}

.hero-form input::placeholder {
    color: #cbd5e1;
}

/* Inputs tuned for light card */
.hero-form input.form-control {
    background: #ffffff;
    border: 1px solid rgba(2, 6, 23, 0.10);
    color: #0f172a;
    /* slate-900 */
    border-radius: 12px;
    transition: .25s ease;
    box-shadow: 0 1px 0 rgba(2, 6, 23, 0.02) inset;
}

.hero-form input.form-control::placeholder {
    color: #94a3b8;
    /* slate-400 */
}

.hero-form input.form-control:focus {
    outline: none;
    border-color: #a78bfa;
    /* lavender */
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.18), 0 8px 18px rgba(2, 6, 23, 0.06);
    transform: scale(1.02);
}

.hero-form input:focus {
    border-color: #5eead4;
    box-shadow: 0 0 10px rgba(94, 234, 212, 0.5);
    transform: scale(1.02);
}

.hero-form .text-white-50 {
    color: #64748b !important;
    /* slate-500 */
}

.btn-gradient {
    background: linear-gradient(60deg, #a78bfa, #7dd3fc);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 12px;
    transition: .25s ease;
    color: #0b1220;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 24px rgba(125, 211, 252, 0.28);
}

.btn-gradient:hover {
    filter: brightness(1.02);
    color: white;
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(90deg, #7dd3fc, #f9a8d4);
    box-shadow: 0 14px 28px rgba(249, 168, 212, 0.28);
}

/* Keep small footer note readable */
.hero-form .small {
    color: #64748b !important;
    /* slate-500 */
}

@keyframes floatIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ======= Section helpers ======= */

.section {
    padding: 80px 0
}

.section-title {
    font-weight: 800;
    letter-spacing: .3px
}

.muted {
    color: var(--muted);
}

.row .notes .btnnotes {
    position: relative;
    /* For z-index */
    z-index: 10;
    /* Above pseudo-elements */
    margin-top: 12px;
    background: linear-gradient(60deg, #000, #027b2e);
    color: #fff;
    padding: 10px;
    border-radius: 20px 0px 20px 0px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.row .notes .btnnotes:hover {
    background: linear-gradient(135deg, #006950, #2e2e2e);
    transform: scale(1.05);
    box-shadow:
        0 15px 30px rgba(50, 93, 69, 0.35),
        0 10px 20px rgba(0, 0, 0, 0.25),
        inset 0 -2px 5px rgba(10, 64, 36, 0.5);
    border: 2px solid #fff;
    /* Added white border */
}

/* ======= Purchase Section ======= */
.purchase-section {
    position: relative;
    background: linear-gradient(135deg, #6c5ce7, #00d1b2);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    overflow: hidden
}

.purchase-section::before,
.purchase-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: float 8s infinite ease-in-out;
    z-index: -1;
    /* Ensure pseudo-elements are behind the button */
}

.purchase-section::before {
    width: 500px;
    height: 500px;
    top: -120px;
    left: -180px
}

.purchase-section::after {
    width: 380px;
    height: 380px;
    bottom: -100px;
    right: -120px
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-30px) rotate(20deg)
    }

    100% {
        transform: translateY(0) rotate(0)
    }
}

.purchase-section h1 {
    font-weight: 700;
    font-size: 2.8rem
}

.purchase-section p {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 30px
}

.purchase-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    pointer-events: auto;
    font-size: 1.1rem;
    font-weight: 600;
    transition: .4s ease;
    background: #fff;
    color: #6c5ce7;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 50%;

}

.purchase-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: #00d1b2;
    color: #fff
}

.icon-bounce {
    display: inline-block;
    animation: bounce 1.5s infinite
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.ctapurchase {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    /* Add some spacing */
}

@media (max-width: 576px) {
    .purchase-section h1 {
        font-size: 1.8rem
    }

    .purchase-section p {
        font-size: .95rem
    }

    .purchase-btn {
        width: 80%;
        /* Increase width for better touch target */
        padding: 16px 20px;
        /* Adjust padding for mobile */
        font-size: 1rem;
        /* Slightly smaller font for mobile */
    }

    .purchase-btn:hover {
        background: linear-gradient(135deg, #006950, #2e2e2e);
        transform: scale(1.05);
        box-shadow:
            0 20px 40px rgba(50, 50, 93, 0.35),
            0 15px 25px rgba(0, 0, 0, 0.25),
            inset 0 -2px 8px rgba(10, 37, 64, 0.5);
        border: 2px solid #fff;
        /* Maintain border in mobile */
    }
}

/* ======= Cards, Features, Category, Numbers, Materials, Social, etc. ======= */
.note-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
    transition: .4s;
    background: #fff
}

.note-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15)
}

.note-img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: #f9f9f9;
    border-radius: 8px
}

.note-body {
    padding: 20px
}

/* .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #006412
} */

.note-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 10px 0;
    color: #2d3436
}

.note-meta {
    font-size: .9rem;
    color: #636e72
}

/* .buy-btn {
    margin-top: 15px;
    width: 50%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    background: linear-gradient(60deg, #000, #027b2e);
    color: #fff;
    border: none;
    transition: .3s
}

.buy-btn:hover {
    background: linear-gradient(135deg, #006950, #2e2e2e);
    transform: scale(1.05)
} */

.feature-card {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    padding: 22px;
    background: #fff;
    transition: .2s;
    box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .18)
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .25)
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    box-shadow: var(--glow)
}

.cat-tile {
    position: relative;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: .25s
}

.cat-tile:hover {
    transform: translateY(-6px)
}

.cat-tile .cover {
    height: 120px;
    background: linear-gradient(135deg, #eef2ff, #ecfeff)
}

.cat-tile .tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(124, 58, 237, .1);
    color: #5b21b6;
    border-radius: 9999px;
    padding: 4px 10px;
    font-weight: 700;
    font-size: .8rem
}

.book-card {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    overflow: hidden;
    background: #fff
}

.book-thumb {
    height: 160px;
    background: linear-gradient(135deg, #fde68a, #fca5a5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800
}

.step {
    position: relative;
    padding-left: 58px
}

.step .num {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #111827;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800
}

.numbers-section {
    position: relative;
    overflow: hidden
}

.number-card {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    padding: 2rem;
    background: #fff;
    transition: .3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1)
}

.number-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15)
}

.number-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-2);
    margin-bottom: .5rem
}

.number-card p {
    font-size: 1rem;
    color: var(--muted)
}

.free-materials-section {
    background: linear-gradient(135deg, #eef2ff, #ecfeff)
}

.materials-card {
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .3s
}

.materials-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.materials-card h3 {
    background: linear-gradient(90deg, #a5b4fc, #5eead4);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 800
}

.materials-card p {
    color: #6b7280
}

.btnlogin {
    position: relative;
    /* For z-index */
    z-index: 10;
    /* Above pseudo-elements */
    margin-top: 12px;
    background: linear-gradient(60deg, #000, #027b2e);
    color: #fff;
    padding: 10px;
    border-radius: 20px 0px 20px 0px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btnlogin:hover {
    background: linear-gradient(135deg, #006950, #2e2e2e);
    transform: scale(1.05);
    box-shadow:
        0 15px 30px rgba(50, 93, 69, 0.35),
        0 10px 20px rgba(0, 0, 0, 0.25),
        inset 0 -2px 5px rgba(10, 64, 36, 0.5);
    border: 2px solid #fff;
    /* Added white border */
}

.btnsignup {
    position: relative;
    /* For z-index */
    z-index: 10;
    /* Above pseudo-elements */
    margin-top: 12px;
    background: linear-gradient(60deg, #000, #027b2e);
    color: #fff;
    padding: 10px;
    border-radius: 20px 0px 20px 0px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btnsignup:hover {
    background: linear-gradient(135deg, #006950, #2e2e2e);
    transform: scale(1.05);
    box-shadow:
        0 15px 30px rgba(50, 93, 69, 0.35),
        0 10px 20px rgba(0, 0, 0, 0.25),
        inset 0 -2px 5px rgba(10, 64, 36, 0.5);
    border: 2px solid #fff;
    /* Added white border */
}

.stay-connected-section {
    background: radial-gradient(1200px 700px at 10% 0%, rgba(124, 58, 237, 0.15), transparent 60%), #fff
}

.social-links {
    gap: 1rem
}



.social-btn {
    display: inline-flex;
    align-items: center;
    padding: .75rem 1.5rem;
    border-radius: 9999px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    color: var(--ink);
    font-weight: 600;
    transition: .3s
}

.social-btn:hover {
    transform: translateY(-3px);
    background: var(--brand-2);
    color: #fff
}

.social-btn i {
    margin-right: .5rem
}

.phone-graphic {
    position: relative;
    text-align: center
}

.phone-graphic .brand-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #00d1b2, #7c3aed);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    font-weight: 800;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05)
    }
}

.testimonial {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .18)
}

.cta {
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    border-radius: 26px;
    color: #fff;
    box-shadow: var(--glow)
}

/* footer */
.footer {
    background: linear-gradient(160deg, var(--brand), var(--brand-2));
    color: #fff
}

.footer a {
    color: #e9fffb
}

.footer a:hover {
    color: #fff
}

.fw-bold img {
    filter: brightness(0) invert(1)
}

/* footer end */
.tilt {
    transition: transform .12s linear;
    transform: perspective(600px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0)) translateZ(0)
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: .5s
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* ======= Responsive ======= */
@media (max-width:1200px) {
    .purchase-section h1 {
        font-size: 2.2rem
    }

    .purchase-section p {
        font-size: 1rem
    }
}

@media (max-width:992px) {
    .hero .headline {
        font-size: clamp(26px, 6vw, 40px)
    }

    .note-img {
        height: 200px
    }

    .buy-btn {
        width: 70%
    }

    .feature-card,
    .number-card,
    .testimonial,
    .materials-card {
        margin-bottom: 20px
    }
}

/* ✅ keep variable-based offsets on small screens (no hard-coded 60/120px) */
@media (max-width:768px) {
    .navbar {
        top: var(--contact-bar-height);
    }

    .hero {
        margin-top: calc(var(--contact-bar-height) + var(--nav-height));
        text-align: center;
    }
}

@media (max-width:576px) {
    .navbar .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .navbar-brand img {
        width: 72px;
        height: auto;
    }

    /* shrink logo so the toggler has room */
    .navbar-toggler {
        margin-left: auto;
        padding: .25rem .5rem;
    }

    .navbar .btn.btn-brand {
        display: inline-flex;
        /* make it visible */
        width: 30%;
        /* full width looks good in drawer */
        justify-content: center;
        margin-top: .5rem;
    }

    /* optional CTA hide */

    .hero .headline {
        font-size: 1.6rem
    }

    .hero .sub {
        font-size: .9rem
    }

    .purchase-section h1 {
        font-size: 1.8rem
    }

    .purchase-section p {
        font-size: .95rem
    }

    .note-img {
        height: 150px
    }

    .number-card h3 {
        font-size: 2rem
    }

    .social-btn {
        width: 100%;
        justify-content: center
    }
}

.policy-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #027b2e;
}

.policy-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.policy-content p,
.policy-content ul {
    margin-bottom: 15px;
}