.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flex-row-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-between{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  color: #8b9098;
  text-align: center;
  margin-bottom: 14px;
}

.fancy {
  font-family: 'Romie', Georgia, serif;
  font-weight: 400;
}
.fancy em {
  font-style: italic;
}
.italic {
  font-style: italic;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.875rem;
}
.lede {
  padding-block: 40px 50px;
}
.btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: #fff;
  justify-content: center;
  white-space: nowrap;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.btn-primary {
  background-color: var(--footer);
  color: white;
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}
.btn-primary:hover {
  background-color: #333333;
}
/* Outline button style */
.btn-outline {
  background-color: transparent; /* Transparent background */
  color: var(--footer); /* Text color is the same as footer (you can adjust to any color you prefer) */
  border: 1px solid var(--footer); /* Solid border with the same color as text */
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  padding: 0.5rem 1.5rem;
}

.btn-outline:hover {
  background-color: var(--footer); /* On hover, background becomes the same color as the footer */
  color: white; /* Text color changes to white */
  border-color: var(--footer); /* Border color changes to match the background */
  transform: translateY(-1px); /* Slight hover effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Hover shadow */
}
