/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Style */
body {
    font-family: 'Courier New', Courier, monospace; /* Retro typewriter-like font */
    background-color: #f8f3e9; /* Beige, vintage paper-like color */
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #555;
    margin-bottom: 30px;
}

.header img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.header h1 {
    font-size: 36px;
    letter-spacing: 3px;
    margin: 10px 0;
    color: #333;
}

.header p {
    font-size: 18px;
    color: #555;
    text-transform: uppercase;
}

/* Content Section */
.content {
    margin: 0 auto;
    max-width: 800px;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #444;
}

h4 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #555;
}

p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 10px;
}

li {
    margin-bottom: 5px;
}

strong {
    color: #000;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #555;
}

.footer p {
    font-size: 14px;
    color: #555;
}
