/*
#02000d
#07203f
#f1d2b6
#d9aa90
#a65e46
*/

body {
    background-color: #f1d2b6;
    margin: 0;
    padding: 0;
    font-family: "Inconsolata", monospace;
    font-size: 125%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    background-color: #f1d2b6; /* Match the background to avoid visual jump */
    display: flex;
    justify-content: center;
}

.header-content {
    width: 100%;
    max-width: 1024px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 100%;
    height: auto;
    margin: 0;
}

.navbar {
    width: 100%;
    background-color: #a65e46;
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 125%;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    color: #f1d2b6;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    color: #d9aa90;
}

.container {
    width: 100%;
    max-width: 1024px;
    text-align: center;
}

.content {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Ensure items align at the top */
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.text-column {
    width: 50%;
    text-align: justify; /* Adjust text alignment as needed */
    margin-right: 20px;
}

.text-column p {
    margin-top: 0; /* Remove the default margin at the top of paragraphs */
}

.image-column {
    display: flex;
    justify-content: center; /* Center image horizontally within column */
    align-items: flex-start; /* Align image at the top within column */
    width: auto; /* Ensure image column takes up necessary width */
}

.image-column img {
    width: 512px;
    height: auto;
}

.insight {
    font-weight: bold;
    color: #a65e46;
}

.image-column-services {
    display: flex;
    justify-content: center; /* Center image horizontally within column */
    align-items: flex-start; /* Align image at the top within column */
    width: auto; /* Ensure image column takes up necessary width */
    margin-right: 20px;
}

.image-column-services img {
    width: 256px;
    height: auto;
}

.text-column-services-right {
    width: 50%;
    text-align: justify; /* Adjust text alignment as needed */
    margin-right: 20px;
}

/* Footer styles */
.footer {
    width: 100%;
    background-color: #a65e46;
    color: #f1d2b6;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Adds space between content and footer */
}

.footer-content {
    width: 100%;
    max-width: 1024px;
    text-align: center;
}

.footer p {
    margin: 0;
}

.footer a {
    color: #f1d2b6;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    color: #d9aa90;
}

h3 {
    margin-top: 0px;
    margin-bottom: 0px;
    color: #a65e46;
}

li {
    font-weight: bold;
    margin-top: 10px;
}

.full-page {
    width: 1024px;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f1d2b6;
}

.form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.form-group label {
    width: 100px; /* Adjust as needed */
    text-align: right;
    margin-right: 10px;
}

.form-group input, 
.form-group textarea {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button[type="submit"] {
    display: block;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    background-color: #a65e46;
    color: #f1d2b6;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button[type="submit"]:hover {
    background-color: #d9aa90;
}

.center {
    text-align: center;
}
