/* 
 * ███╗   ██╗ █████╗ ██╗   ██╗██████╗  █████╗ ██████╗ 
 * ████╗  ██║██╔══██╗██║   ██║██╔══██╗██╔══██╗██╔══██╗
 * ██╔██╗ ██║███████║██║   ██║██████╔╝███████║██████╔╝
 * ██║╚██╗██║██╔══██║╚██╗ ██╔╝██╔══██╗██╔══██║██╔══██╗
 * ██║ ╚████║██║  ██║ ╚████╔╝ ██████╔╝██║  ██║██║  ██║
 * ╚═╝  ╚═══╝╚═╝  ╚═╝  ╚═══╝  ╚═════╝ ╚═╝  ╚═╝╚═╝  ╚═╝
 */

.subpage .navbar {
    position: relative;
    width: 100%;
    max-width: unset;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    margin: 0;
    border-bottom: 2px solid rgba(0, 0, 0, .1);
}

/* 
 * ███████╗███████╗ ██████╗████████╗██╗ ██████╗ ███╗   ██╗███████╗
 * ██╔════╝██╔════╝██╔════╝╚══██╔══╝██║██╔═══██╗████╗  ██║██╔════╝
 * ███████╗█████╗  ██║        ██║   ██║██║   ██║██╔██╗ ██║███████╗
 * ╚════██║██╔══╝  ██║        ██║   ██║██║   ██║██║╚██╗██║╚════██║
 * ███████║███████╗╚██████╗   ██║   ██║╚██████╔╝██║ ╚████║███████║
 * ╚══════╝╚══════╝ ╚═════╝   ╚═╝   ╚═╝ ╚═════╝ ╚═╝  ╚═══╝╚══════╝
 */

.subpage .section {
    text-align: unset;
}

.subpage .section-title {
    text-align: unset;
    --font-size-title: clamp(2rem, 5vw, 4.5rem);
    padding: 0;
    margin-bottom: .35em;
}

.subpage .section-paragraph {
    text-align: unset;
    margin: 0;
    margin-bottom: 1.6em;
    --font-size-paragraph: clamp(1rem, 2vw, 1.2rem);
    font-size: var(--font-size-paragraph);
    line-height: 1.6;
    color: var(--color-text);
    max-width: 65ch;
    width: unset;
}

.subpage .section:nth-child(odd) {
    background-color: #fff;
}

.subpage .section:nth-child(even) {
    background-color: #fff;
}

.subpage .section-paragraph:last-child {
    margin-bottom: 0;
}

.subpage .subpage-svg {
    height: clamp(300px, 50vw, 500px);
    width: clamp(300px, 50vw, 500px);
    fill: #7aaede;
}

/* 
 * ██████╗ ██████╗ ██╗██╗   ██╗ █████╗  ██████╗██╗   ██╗
 * ██╔══██╗██╔══██╗██║██║   ██║██╔══██╗██╔════╝╚██╗ ██╔╝
 * ██████╔╝██████╔╝██║██║   ██║███████║██║      ╚████╔╝ 
 * ██╔═══╝ ██╔══██╗██║╚██╗ ██╔╝██╔══██║██║       ╚██╔╝  
 * ██║     ██║  ██║██║ ╚████╔╝ ██║  ██║╚██████╗   ██║   
 * ╚═╝     ╚═╝  ╚═╝╚═╝  ╚═══╝  ╚═╝  ╚═╝ ╚═════╝   ╚═╝   
 */

.subpage .privacypolicy-content {
    margin-block: 2em;
}

.policy-section {
    margin-bottom: 2.5em;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.section-list {
    list-style: none;
    padding-left: 1.2em;
    margin: 1em 0;
}

.section-list li {
    position: relative;
    margin-bottom: 0.5em;
    line-height: 1.6;
    color: var(--color-text);
    font-size: var(--font-size-paragraph);
}

.section-list li::before {
    content: "•";
    position: absolute;
    left: -1.2em;
    color: var(--color-primary);
}

.section-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 0.2em;
    color: var(--color-text);
    font-weight: 600;
}