body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    display: flex;
    flex: 1;
    max-width: 1600px;
    margin: 0 auto;
}

.left-column {
    flex: 1;
    padding: 20px;
    margin-right: 10px;
    background-color: #f0f0f0;
}

.right-column {
    flex: 1;
    margin-left: 10px;
    padding: 20px;
    background-color: #f0f0f0;
}

.quote {
    /* font-size: 24px;
    margin-bottom: 20px; */
    position: relative;
    font-size: 20px;
    font-style: italic;
    color: #333;
    padding-left: 40px;
    text-align: center;
}

.quote:before {
    content: "\201C"; /* Unicode for left double quotation mark */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 4em;
    line-height: 0.8em;
    color: #999;
}

header, footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.header-content, .footer-content {
    max-width: 900px; /* Adjust as needed */
    margin: 0 auto; /* Center the content */
}

main {
    padding: 20px;
}

#summary {
    font-size: 18px;
    flex: 1;
    text-align: center;
    margin-left: 100px;
    margin-right: 100px;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

/* Header styles */
header h1 {
    margin: 0;
}

hr {
    border: none;
    border-top: 1px solid #ccc; /* Add a horizontal line separator */
    margin: 20px 150px;
}

/* Footer styles */
footer {
    text-align: center;
}

/* Section styles */
section {
    margin-bottom: 20px;
}

section h2 {
    margin-bottom: 10px;
}

section p {
    margin-top: 0;
}

ul {
    list-style-type: disc;
}

.center {
    text-align: center;
}

.tight-line {
    line-height: 0.5;
}

.footer-content {
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
}

.footer-content p {
    margin: 5px;
}

.footer-content img {
    width: 30px;
    height: auto;
}

@media screen and (max-width: 600px) {
    .header-content, .footer-content {
        padding: 0 20px; /* Add padding to sides */
    }
}
