body {
    margin: 0;
    font-family: Tahoma;
    background-color: #163554;
}

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.sidebar {
    flex: 1 1 240px;
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
}

.content {
	margin-top: 50px;
    flex: 3 1 600px;
    padding: 20px;
    box-sizing: border-box;
	background-color: #fff;
}

.content .columns-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.content .column {
    flex: 1;
    margin-right: 10px; /* Adjust spacing between columns */
}

.content .column.column-smaller {
    flex: 0.5; /* Adjust the width as needed, here it's set to half the width of the first column */
}

@media (max-width: 768px) {
    .content .columns-wrapper {
        flex-direction: column;
    }

    .content .column {
        flex: 1;
        margin-right: 0; /* Remove right margin for stacking on smaller screens */
        margin-bottom: 20px; /* Add bottom margin for spacing between columns */
    }
}


.sidebar img {
    width: 100%;
    height: auto;
}

.sidebar a {
	color: #2A5D90;
}

.nav {
    list-style-type: none;
    padding: 0;
}

.nav li {
    padding: 10px;
    margin-bottom: 5px;
    text-align: center;
    background-color: #1D4873; /* Secondary color */
    border-radius: 5px;
}

.nav li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

.nav li:hover {
    background-color: #14314F; /* Hover color */
}

.nav li:nth-child(odd) {
    background-color: #153453; /* Alternate background color */
}

.contact {
    background: #333;
    color: #FFF;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    border-radius: 5px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-item {
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
    margin-bottom: 20px;
}

.contact-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-details {
    line-height: 1.4;
}

.content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

.footer {
    width: 100%;
    background-color: #163554; /* Primary color */
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
}

.footer-text {
    margin: 0;
    font-size: 14px;
}

.footer a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
}

.text-center {
    text-align: center;
    color: #688FB7;
    font-family: Tahoma;
}

.background-image-1 {
    background: url(images/homepage04.jpg) no-repeat left top;
    font-weight: bold;
    font-size: 12px;
    color: #FFFFFF;
}

.no-decoration {
    text-decoration: none;
}

.background-image-2 {
    background: url(images/homepage06.jpg) no-repeat left top;
    font-weight: bold;
    font-size: 12px;
    color: #FFFFFF;
}

.content h1 {
    font-size: 24px;
    margin-top: 0;
	color: #163554;
}

.content p {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar, .content {
        flex-basis: 100%;
    }

    .sidebar {
        order: 2;
    }

    .content {
        order: 1;
    }

    .footer-text {
        font-size: 12px;
    }
}
