/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
header {
    background-color: #456b4c; /* Tony Green */
    color: white;
    text-align: center;
    padding: 1rem 0;
}

/* Section Styles */
section {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section img {
    max-width: 100%;
    border-radius: 8px;
}

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

ul li {
    list-style-type: square;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #456b4c; /* Tony Green */
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Extras */
h1, h2 {
    text-transform: uppercase;
    text-shadow: 1px 1px 2px #555;
}

strong {
    color: #456b4c; /* Tony Green */
}
