.section {
    background: navy;
    margin-top: 1rem;
    margin-bottom: .75rem;
    padding: 1rem;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    border: 1px solid rgba(135, 206, 250, .25);
    border-radius: 1rem;
}
    
.section-header {
    display: flex;
    align-items: baseline;
    gap: .75rem;
    margin-bottom: 1rem;
}
    
.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; 
 }