    *, *::before, *::after { 
      box-sizing: border-box; margin: 0; padding: 0; 
    }

    body {
        font-family: 'DM Sans', sans-serif;
        background: #003;
        color: whitesmoke;
        font-size: 16px;
        line-height: 1.75;
        padding-top: 80px;
        padding-left: 10px;
        padding-right: 10px;
        max-width: 1500px;
        margin-right: auto;
        margin-left: auto;
    }

    html { 
        scroll-behavior: smooth; 
    }


    .accent {
        color: lightskyblue;
        font-style: italic;
    }

    .center-text {
        text-align: center;
    }

     /* ── MAIN CONTENT ── */

    main {
        animation: fadeUp .6s ease .1s both;
    }

    /* SECTIONS */
    .section {
        background: navy;
        margin-top: 1rem;
        margin-bottom: .75rem;
        padding: 2rem 2rem 2.5rem;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        border: 1px solid rgba(135, 206, 250, .25);
        border-radius: 1rem;
    }

    .section-header {
        display: flex;
        align-items: baseline;
        gap: .75rem;
        margin-bottom: .5rem;
    }

    .section-num {
        font-family: 'DM Serif Display', serif;
        font-size: 2rem;
        color: lightskyblue;
        line-height: 1;
        flex-shrink: 0;
        font-weight: 400;
    }

    .in-short {
        display: inline-block;
        background: navy;
        color: whitesmoke;
        font-size: .72rem;
        font-weight: 500;
        letter-spacing: .08em;
        text-transform: uppercase;
        border: 1px solid lightskyblue; 
        padding: .6rem .6rem;
        border-radius: 1rem;
        margin-bottom: .85rem;
    }

    .section h2 {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 1.5rem;

    }
    
    .section h3 {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 400;
        color: whitesmoke;
        line-height: 1.15;
        letter-spacing: -.01em;

    } 

    .section h4 {
        font-family: 'DM Serif Display', serif;
        font-size: 1.1rem;
        font-weight: 400;
        color: whitesmoke;
        letter-spacing: -.01em;
    }
  

    .section p {
        font-family: 'Lato', sans-serif;
        font-weight: 400;
        font-size: 1.2rem;
        color: whitesmoke;
        letter-spacing: -.01em;
        background-color: #00a;

    }

    .section ul {
        font-family: 'Lato', sans-serif;
        font-weight: 400;
        font-size: 1.2rem;
        color: whitesmoke;
        letter-spacing: -.01em;
        background-color: #00a;
        padding: 1.25rem 1.5rem;
        border-radius: 1rem;
    }

    .section li {
        margin-bottom: .85rem;
    }

    .section li:last-child {
        margin-bottom: 0;
    }

    .section ul ul {
        padding-left: 40px; 
    }

p { 
        margin-bottom: .85rem; 
        color: whitesmoke; 
        font-size: .93rem; 
    }

