/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Body */
body {
    background-color: #ff4c4c; /* Red background */
    color: #000000; /* Black text */
    line-height: 1.6;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    padding: 40px 20px;
    background-color: #ff1a1a; /* Slightly darker red for contrast */
    color: #000000; /* Black text in header */
    border-radius: 10px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

/* Navigation */
nav {
    margin: 20px 0;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000000; /* Black links */
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffd6d6; /* Lighter red/pink for contrast */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 40px;
}

section h2 {
    color: #990000; /* Dark red headings for visibility */
    margin-bottom: 15px;
}

/* Lists */
ol {
    margin-left: 20px;
}

ol li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #000000; /* Black footer text */
}
