body {
    font-family: "Bitter", serif;
    line-height: 1.5;
    color: #333;
    background-color: #f5f5f5;
    max-width: 800px;
    margin: 120px auto 40px auto; 
    padding: 0 20px;
}

h1 {
    font-weight: 800;
    font-size: 48px;
    line-height: 1.1; /* Tightens space between wrapped lines */
    margin-bottom: 2px;
}

h2 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2; /* Tightens space between wrapped lines */
    margin-top: 0;
    margin-bottom: 2px;
    color: #555;
}

h3 {
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 32px;
    color: #555;
}

p {
    font-weight: 200;
    font-size: 16px;
    margin-bottom: 1rem;
}

a {
    color: #FF4600;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    body {
        margin-top: 60px; /* Reduce top margin on mobile */
    }
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 22px;
    }
}