/* Reset body spacing */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Header container */
.site-header {
  width: 100%;
}

/* Top row: logo + business name */
.top-row {
  display: flex;
  align-items: center;
  padding: 16px;
}

/* Logo sizing */
.logo {
  height: 250px;   /* adjust the height to your preference */
  width: auto;     /* keeps aspect ratio */
  margin-right: 16px;
}

/* Business name takes remaining space */
.business-name {
  flex-grow: 1;              /* take all remaining width */
  font-size: 2em;            /* adjust size as needed */
  color: #1a73e8;            /* change to match your logo color */
  margin: 0;
}

/* Value bar below header */
.value-bar {
  display: flex;
  justify-content: space-between;
  background-color: #222; /* change to your brand color */
  color: #fff;
  padding: 12px 24px;
  font-weight: bold;
}

/* Optional: main content spacing */
main {
  padding: 24px;
}
