/* 1. Load Source Serif 4 */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

/* 2. Global Styles */
body {
    font-family: 'Source Serif 4', serif;
    font-size: 18px; /* A happy medium size */
    line-height: 1.6;
    color: #222;
    
    margin: 0 auto; 
    padding: 4rem 1rem;
    max-width: 700px; 
    background-color: #FDFBF7; /* "Isabelline" - a very light, warm cream */
    color: #333333;
}

/* 3. Typography */
h1 {
    font-size: 1.75rem;
    font-weight: 600; 
    margin-bottom: 2rem;
    letter-spacing: -0.5px; /* Tightens the headline slightly for a cleaner look */
}

h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    font-weight: 600; 
    color: #444; /* Slightly lighter header color looks very modern */
}

p {
    margin: 1.1rem 0;
}

ul {
    margin-left: 1.2rem;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

ul li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem; /* Adds a little space between bullet and text */
}

/* 4. Links */
a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #555;
    text-decoration-color: #555;
}

hr {
    border: 0;
    border-top: 1px solid #e5e5e5; 
    margin: 3rem 0;
}
