/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2 {
    font-family: 'Roboto', sans-serif;
}

header {
    background-color: #070b0f;
    color: white;
    text-align: center;
    padding: 20px;
}

header h1 {
    margin: 0;
}

header p {
    font-size: 14px;
    font-weight: lighter;
}

.content {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h2 {
    color: #007BFF;
    margin-top: 20px;
    font-size: 1.5em;
}

ul {
    line-height: 1.6;
}

ul li {
    margin-bottom: 10px;
}

p {
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #06080a;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .content {
        padding: 15px;
        margin: 0 10px;
    }

    footer p {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    header p {
        font-size: 12px;
    }

    .content {
        padding: 10px;
    }

    footer p {
        font-size: 10px;
    }
}
