/* Base styles */
body {
    font-family: "Roboto Condensed", Arial, sans-serif;
    line-height: 1.5;
    font-size: 25px;
    max-width: 800px;
    margin: 0 auto;
    color: #000;
    font-weight: bold;
    margin-bottom: 70px;
}

.last-updated {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 60px;
}

.main-content {
    color: #1e1e1e;
}

li {
    margin-left: 50px;
    font-size: 20px;
    font-weight: 600;
}

h1 {
    font-size: 35px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
h1 span {
    
    font-weight: normal;
    font-size: 25px;
}

h2 {
    font-size: 30px;
    margin-top: 70px;
    margin-bottom: 40px;
}
h3 {
    font-size: 24px;
    margin: 20px 0 20px 20px;
}

p {
    margin-bottom: 15px;
    font-weight: 600;
}

a {
    color: #a034a0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Tablet Media Query */
@media screen and (max-width: 768px) {
    body {
        font-size: 22px;
        padding: 0 20px;
        max-width: 600px;
    }

    .last-updated {
        font-size: 32px;
        margin-bottom: 45px;
    }

    h1 {
        font-size: 30px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    h2 {
        font-size: 26px;
        margin-top: 50px;
        margin-bottom: 30px;
    }
    h3 {
        font-size: 20px;
    }
}

/* Mobile Media Query */
@media screen and (max-width: 480px) {
    body {
        font-size: 18px;
        padding: 0 15px;
        max-width: 440px;
    }

    .last-updated {
        font-size: 26px;
        margin-bottom: 35px;
    }

    h1 {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    h2 {
        font-size: 22px;
        margin-top: 40px;
        margin-bottom: 25px;
    }
    h3 {
        font-size: 18px;
    }

    p {
        margin-bottom: 12px;
    }
}
