/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styling for the body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Container for the content */
.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Header section */
header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5rem;
    color: #333;
}

header p {
    font-size: 1.1rem;
    color: #555;
}

/* Content section */
.content {
    font-size: 1rem;
    color: #555;
}

/* Headings for each section */
.content h2 {
    font-size: 1.6rem;
    margin-top: 20px;
    color: #1a73e8;
}

/* Paragraphs and lists */
.content p, .content ul {
    margin-top: 10px;
    margin-bottom: 20px;
}

.content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.content li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

footer p {
    margin-top: 10px;
}
