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

body, html {
    height: 100%;
    color: white;
    background-color: white;
    font-family: 'Sora', sans-serif;
}

a {
    text-decoration: none;
    color: white;
}

header {
    color: white;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

#logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
}

@media (min-width: 768px) {
    #logo {
        flex-direction: row;
        justify-content: space-between;
    }
}

#icon img {
    height: 32px;
}

#brand {
    display: flex;
    flex-direction: column;
    font-family: 'Aptos', sans-serif;
    align-items: center;
    font-size: 16px;
}

@media (min-width: 768px) {
    #brand {
        padding-left: 10px;
        font-size: 24px;
    }

    #icon img {
        height: 48px;
    }
}

#brand .brand_line1 {
    font-weight: bold;
}
        
h1 {
    color: #2c3e50;
    padding-bottom: 10px;
}

h2 {
    color: #34495e;
    margin-top: 30px;
}

.section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
}

.subsection {
    margin-left: 20px;
}

.tips {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

strong {
    color: #2c3e50;
}

#footer {
    color: white;
    min-height: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:16px 0px;
}

#footer p {
    padding: 16px;
    font-size: smaller;
}

#footer_links {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 8px;
}

.footer_link {
    padding: 8px;
    font-size: smaller;
}

@media (min-width: 768px) {
    #footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 16px 5%;
    }

    #footer p {
        padding: 0px;
    }

    #footer_links {
        margin-top: 0px;
    }

    .footer_link {
        padding: 0px 16px;
    }
}