/* General styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', sans-serif;
    color: #444;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Link styles */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Button styles */
button {
    background-color: #444;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

/* Header styles */
header {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

/* Footer styles */
footer {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 10px;
    border-top: 1px solid #ddd;
    font-size: 0.9em;
}

/* Navigation styles */
nav {
    margin-bottom: 20px;
    text-align: center;
}

nav a {
    margin: 0 15px;
    color: #444;
    font-size: 1em;
}

nav a:hover {
    color: #0066cc;
}

/* Container styles */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Subtle styling for sections */
section {
    margin-bottom: 40px;
}

section h2 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    color: #333;
}

section p {
    color: #555;
}
