.agreement-content {
    margin-top: 8rem;
    margin-bottom: 12rem;
    max-width: 1000px;
    justify-self: center;
    margin-left: 1rem;
    margin-right: 1rem;

    h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
        color: #1a1a1a;
        border-bottom: 2px solid #ddd;
        padding-bottom: 0.4rem;
        line-height: 2rem;
    }

    h4 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        color: #444;
        font-weight: 600;
    }

    p {
        margin: 1rem 0;
        font-size: 1rem;
        line-height: 1.75rem;
        text-align: justify;
    }

    b {
        font-weight: 600;
    }

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

    li {
        margin-bottom: 0.5rem;
        list-style-type: disc;
    }

    div {
        margin-bottom: 1rem;
    }

    a {
        color: #007acc;
        text-decoration: none;
        transition: color 0.2s ease, text-decoration 0.2s ease;
    }

    a:hover,
    a:focus {
        color: #005f99;
        text-decoration: underline;
    }
}

/* Reduce margins for smaller devices */
@media (max-width: 768px) {
    .agreement-content {
        margin-top: 6rem;
        margin-bottom: 10rem;
    }

    .h3 {
        font-size: 1.20rem;
        margin-top: 1.5rem;
        color: #1a1a1a;
        border-bottom: 2px solid #ddd;
        padding-bottom: 0.4rem;
        line-height: 2rem;
    }

    .h4 {
        font-size: 0.90rem;
        margin-top: 1.25rem;
        color: #444;
        font-weight: 600;
    }

    .p {
        margin: 0.70rem 0;
        font-size: 1rem;
        line-height: 1.25rem;
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .agreement-content {
        margin-top: 4rem;
        margin-bottom: 8rem;
    }

    .h3 {
        font-size: 1.25rem;
        margin-top: 1.75rem;
        color: #1a1a1a;
        border-bottom: 2px solid #ddd;
        padding-bottom: 0.4rem;
        line-height: 2rem;
    }

    .h4 {
        font-size: 1rem;
        margin-top: 1.25rem;
        color: #444;
        font-weight: 600;
    }

    .p {
        margin: 0.75rem 0;
        font-size: 1rem;
        line-height: 1.5rem;
        text-align: justify;
    }
}