body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.topbar {
  display: flex;
  font-family: Garamond;
  justify-content: space-between;
  align-items: center;
  background-color: #d8dbd9;
  color: #000099;
  padding: 12px 20px;
}

.topbar-left {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000099;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.topbar-left:hover {
  background-color: #e6e6e6; /* Highlight color */
}
.name-small {
  font-size: 16px;
  font-weight: bold;
}

.name-large {
  font-size: 24px;
  font-weight: bold;
}
.business-name {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #000099;
  display: inline-block;
  padding-bottom: 0px;
}

.business-subtitle {
  font-size: 12px;
  color: #000099;
}

.topbar-right a {
  color: #000099;
  text-decoration: none;
  font-size: 16px;
}

.topbar-right a:hover {
  text-decoration: underline;
}

.main-content {
  padding: 20px;
}

.address {
  padding: 20px;
}

.executives {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.person-row {
  display: grid;
  grid-template-columns: 0.4fr 2fr; /* Adjust widths as needed */
  gap: 10px;
  align-items: center;
}

.person-row .email a {
  color: #007bff;
  text-decoration: none;
}

.person-row .email a:hover {
  text-decoration: underline;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 0px;
}

.no-interact {
  pointer-events: none;
  user-select: none;
}

body.index-page {
  background-color: #232426; /* Replace with any color */
}

@media (max-width: 500px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-right {
    margin-top: 10px;
  }
}
