/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main container for the page */
.content-container {
    font-family: 'Arial', sans-serif;
    color: white;
    background-color: black;
    padding: 30px;
}

/* Heading Styles */
h1, h2, h3 {
    color: orange;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.5rem;
    margin-top: 15px;
}

/* Paragraph and List Styles */
p, ul {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
}

ul {
    margin-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Subsection Title Styling */
strong {
    color: orange;
}

/* Link Styles (if any) */
a {
    text-decoration: none;
    color: orange;
}
