/* Base Styles */
body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

/* Links */
a {
    color: #0073e6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.button,
input[type="submit"],
button {
    display: inline-block;
    padding: 0.75em 1.5em;
    background-color: #0073e6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.button:hover,
input[type="submit"]:hover,
button:hover {
    background-color: #005bb5;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #f5f5f5;
    padding: 1em 0;
    border-bottom: 1px solid #e0e0e0;
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #0073e6;
}

/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 2em 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-size: 0.9em;
    color: #666666;
}

pre {
    word-wrap: break-word;
    white-space: pre-wrap;
}
