    html {
    font-size: 16px;
    }
    body {
    font-family: 'Poppins', sans-serif;
    background-color: #101010;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    }
    .container {
    max-width: 50rem;
    padding: 5rem 3rem;
    margin: 0 auto;
    }
    h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-align: left;
    }
    h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    text-align: left;
    }
    p, ul {
    font-size: 1.375rem;
    line-height: 1.9;
    text-align: left;
    }
    .section-divider {
    border-top: 1px solid #333;
    margin: 2.5rem 0;
    }
    .source-link {
    display: inline-flex;
    align-items: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: #6067b6;
    text-decoration: none;
    border-bottom: 1px solid #6067b6;
    transition: color 0.3s ease, border-color 0.3s ease;
    }
    .source-link svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    fill: currentColor;
    }
    .source-link:hover {
    color: #ffffff;
    border-color: #ffffff;
    }
    @media (max-width: 48rem) {
    .container {
    padding: 2.5rem 1.5rem;
    }
    h1 {
    font-size: 1.875rem;
    }
    h2 {
    font-size: 1.5rem;
    }
    p, ul {
    font-size: 1rem;
    }
    }