body {
    font-family: open sans, sans-serif;
    display: flex;
    justify-content: center;
    margin: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 960px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

/* Header styling for the thick blue banner */
.thick-blue-banner {
    background-color: #0a314d; /* Department of State blue */
    color: white;
    padding: 20px;
    display: flex;
    align-items: center; /* Vertically center items */
    position: relative;
    height: 100px; /* Adjust height as needed */
    box-sizing: border-box;
}

/* Header styling for the smaller banner under main banner */
.thin-blue-banner {
    background-color: #205493; /* Department of State blue */
    color: white;
    padding: 0px;
    display: flex;
    align-items: center; /* Vertically center items */
    height: 30px; /* Adjust height as needed */
    box-sizing: border-box;
}
.logo {
    position: absolute;
    left: 20px;
    width: auto; /* Maintains aspect ratio */
    height: 50px;
}

.header-title {
    font-family: Garamond, sans-serif;
    margin: 0;
    flex-grow: 1; /* Allows the title to take up available space for centering */
    text-align: center;
}

.header-title-2 {
    font-family: open sans, sans-serif;
    margin: 0;
    flex-grow: 1; /* Allows the title to take up available space for centering */
    text-align: center;
}

/* Content area styling */
.content {
    padding: 20px;
    line-height: 1.6;
}

/* Dropdown styling */
.dropdown-section {
    margin: 20px 0;
}

#selection-box {
    font-family: Calibri, sans-serif;
    padding: 8px;
    font-size: 16px;
}

/* Result1 display area styling */
.result-box {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    min-height: 20px;
    font-style: italic;
    color: #555;
}

/* Result2 display area styling */
.result-box-2 {
    margin-top: 0px;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    min-height: 20px;
    font-style: italic;
    color: #555;
}