body {
    background-color: #D2B48C; /* A soft brown color (tan) */
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    background-color: white;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.container {
    max-width: 65%;
    margin: 0 auto;
    text-align: left;
}

footer {
    max-width: 65%;
    margin: 0 auto;
    text-align: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    padding-bottom: 3px;
    align-items: center;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.content {
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
}

img {
        max-width: 100%; /* Ensures the image doesn't exceed its container's width */
        height: auto;    /* Maintains the aspect ratio */
        display: block;  /* Removes extra space below the image */
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .container {
        max-width: 90%;
    }

    .header .container {
        flex-direction: column;
        align-items: center;
    }

    .content {
        padding: 1rem;
    }
}