body {
    font-family: Arial, sans-serif;
    background-color: #FDF8F4;
    color: #412F25;
    margin-left: 20px;
    margin-right: 20px;
}

.container {
    width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    display: flex;
}

.header {
    height: 60px;;
}


.menu {
    padding: 10px;
    width: 360px;
}


.menu a {
    display: block;
    color: #412F25;
    margin: 5px;
    padding: 10px;
}


.menu a:hover {
    text-decoration: underline;
    background-color: #f7e4d4;
    border-radius: 4%;
    border-color: #BDBDBD;
}

.centeredImage {
    display: block;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.moduleContainer {
    background-color: white;
    border-radius: 8px;
    border-style: solid;
    border-color: #412F25;
    padding: 20px;
}

.aboutUs {
    padding: 10px;
    line-height: 1.5;
    margin-left: 40px;
    margin-right: 40px;
}

.contactUs {
    background-color: white;
    border-radius: 8px;
    border-style: solid;
    border-color: #412F25;
    padding: 40px;
}

.orgChart {
    text-align: center;
}

.orgOwner {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.orgChartRow {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.orgTile {
    background-color: white;
    border-radius: 8px;
    border-color: #412F25;
    border-style: solid;
    width: 20%;
    height: 325px;
    padding: 20px;
}

.orgImg {
    display: block;
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
    border-color: #412F25;
    border-style: solid;
    object-fit: cover;
    object-position: top center;
}

.orgProfile {
    text-align: center;
}

.empDetails {
    text-align: left;
    border-radius: 8px;
    border-style: solid;
    border-color: #412F25;
    background-color: white;
    padding: 20px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}

.footer {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
    font-size: 12px;
    color: #666;
}