@import url('https://fonts.googleapis.com/css2?family=Fugaz+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

.dm-sans-regular {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.dm-sans-bold {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.fugaz-one-regular {
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body.pp-page {
    margin: 0;
    padding: 20px;
    background-color: #120B17;;
    color: #DFDAF0;
    line-height: 1.5;
}

.pp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #FCEAA2;
}

h1.pp-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-family: "Fugaz One", sans-serif !important;
    color: #FCEAA2;
}

.pp-logo {
    width: 49px;
    height: 49px;
    position: relative;
    top: 2px;
}

.text-large {
    font-size: 30px;
}

.text-medium {
    font-size: 20px;
}

.pp-intro, .pp-intro-note {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px auto;
    color: #DFDAF0;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    /*border-bottom: 2px solid #DFDAF0;*/
    padding-bottom: 6px;
    text-align: center;
}

ul.inline-bullets {
    list-style: none;       /* we use custom bullets */
    padding-left: 0;
    margin: 0 auto;         /* center the UL itself */
    display: flex;          /* center its children */
    flex-direction: column; /* stack li elements vertically */
    align-items: center;    /* center each LI horizontally */
}


ul.inline-bullets li {
    display: inline-flex;      /* bullet + text on same line */
    /*align-items: baseline;*/
    font-size: 18px;
    padding: 4px 0;
}

ul.inline-bullets li::before {
    content: "•";
    margin-right: 6px;         /* space between bullet and text */
    font-size: 18px;
}



ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    padding: 6px 0;
    font-size: 18px;
}

.pp-note {
    background-color: #1F122C;
    padding: 15px;
    border-left: 4px solid #62676F;
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}

.pp-footer {
    text-align: center;
    font-size: 14px;
    color: #62676F;
    margin: 60px 0 30px 0;
}

.pp-footer p {
    margin: 6px 0;
}

@media (max-width: 600px) {
    body.pp-page {
        padding: 10px;
    }
    h1.pp-title { font-size: 36px; }
    section h2 { font-size: 28px; }
    ul li, .pp-note { font-size: 16px; }
}
