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

/* Softer background + serif body font for a more editorial look */
body {
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.6;
    color: #222;
    background: radial-gradient(circle at top left, #fdfbff 0%, #f3f4f7 40%, #eceff3 100%);
    padding: 2rem 1rem;
}

/* Keep same content width */
main {
    max-width: 800px;
    margin: 0 auto;
}

/* Headings: modern sans-serif with letter spacing */
h1,
h2 {
    font-family: "Trebuchet MS", "Segoe UI", system-ui, -apple-system, sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1e293b;
}

/* Sizes kept identical to your original */
h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(15, 23, 42, 0.15);
    padding-bottom: 0.5rem;
}

h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 2.5rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6366f1, #22c55e);
}

/* Body text styling */
p {
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 0.98rem;
    color: #374151;
}

/* Two-column list preserved, but visually upgraded */
ul {
    list-style: none;
    column-count: 2;
    column-gap: 2rem;
    padding-left: 0.25rem;
}

/* Custom bullets without affecting layout/flow */
li {
    margin-bottom: 0.5rem;
    break-inside: avoid;
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.96rem;
    color: #111827;
}

li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: radial-gradient(circle, #6366f1 0%, #4f46e5 40%, #22c55e 100%);
}

/* Mobile responsiveness kept same sizes, just adjusted padding */
@media (max-width: 600px) {
    body {
        padding: 1rem 0.75rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    ul {
        column-count: 1;
    }
}
