/* styles.css */

/* General body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Container for the main content */
div {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Headings styling */
h2 {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Paragraph styling */
p {
    margin: 10px 0;
}

/* List styling */
ul {
    list-style-type: circle;
    padding-left: 20px;
}

/* Link styling */
a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Horizontal rule styling */
hr {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 20px 0;
}