h1 { 
    font-family: helvetica;
    font-weight: bold;
    font-size: 3rem;
    line-height: 2.75rem;
    letter-spacing: -0.04em;
    color: #99aa99;
    padding: 0;
}

h2 { 
    font-family: helvetica;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 2.75rem;
    letter-spacing: -0.04em;
    color: #99aa99;
    padding: 0;
}

h3 { 
    display:inline;
    font-family: helvetica;
    font-weight: bold;
    font-size: 0.85rem;
    line-height: 140%;
    letter-spacing: -0.01em;
    color: #99aa99;
    padding: 0;
}

p {
    font-family: helvetica;
    font-size: 0.85rem;
    line-height: 140%;
    letter-spacing: -.01em;
    color: #666666;
    padding: 0;
    margin: 0;
}

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

div {
    padding: 0;
}

#pageheader {
    border-width: 0px;
    border-style: dashed;
    border-color: red;
    padding: 1rem;
}

/* Container for columns */
.container {
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    gap: 20px; /* Space between columns */
}

/* Column styles */
.column {
    flex: 1; /* Each column will take equal space */
    background-color: #ffffff;
    padding: 20px;
    box-sizing: border-box; /* Includes padding in width */
}

.column-empty {
    background-color: #ffffff; /* Ensures the third column is blank */
}

/* Make images responsive */
.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center images */
}

/* Responsive behavior for columns */
@media (max-width: 768px) {
    .column {
        flex-basis: 100%; /* Stack columns on small screens */
