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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f0f0f0;
}

header {
    display: flex;
    justify-content: flex-start;
    padding: 10px;
}

header button {
    background-color: #8f1440;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

header button:hover {
    background-color: #005a9e;
}
hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px 0;
}
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content-box {
    background-color: white;
    padding: 20px;
    max-width: 900px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.content-box h1 {
    color: #8f1440;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.content-box h2 {
    color: #8f1440;
    font-size: 1.4em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-box p, .content-box ul, .content-box li {
    font-size: 1em;
    margin-bottom: 10px;
    color: #333;
}

footer {
    background-color: #8f1440;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .content-box {
        padding: 15px;
    }

    header button {
        font-size: 0.9em;
        padding: 6px 12px;
    }

    .content-box h1 {
        font-size: 1.5em;
    }

    .content-box h2 {
        font-size: 1.2em;
    }

    .content-box p, .content-box ul, .content-box li {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    header {
        padding: 5px;
    }

    header button {
        font-size: 0.8em;
        padding: 4px 8px;
    }

    .content-box {
        padding: 10px;
    }

    .content-box h1 {
        font-size: 1.2em;
    }

    .content-box h2 {
        font-size: 1em;
    }

    .content-box p, .content-box ul, .content-box li {
        font-size: 0.8em;
    }

    footer {
        font-size: 0.8em;
    }
}
