
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card {
  max-width: 420px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  border: 3px solid #ff8c1a;
  border-radius: 8px;
  background: #000;
}

.logo {
  width: 180px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.tagline {
  font-size: 1rem;
  color: #ff8c1a;
  margin-bottom: 1rem;
}

.location {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact {
  margin-bottom: 1.5rem;
}

.phone {
  display: inline-block;
  padding: 0.6rem 1rem;
  border: 2px solid #ff8c1a;
  color: #ff8c1a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.phone:hover {
  background: #ff8c1a;
  color: #000;
}

section {
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #ff8c1a;
}

ul {
  list-style: none;
}

li {
  margin-bottom: 0.3rem;
}

.note {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  opacity: 0.85;
}

.links a {
  display: inline-block;
  margin: 0.3rem;
  color: #fff;
  text-decoration: underline;
}

footer {
  font-size: 0.85rem;
  opacity: 0.8;
}


/* External business link buttons */

.external-buttons {
  margin-top: 1.5rem;
  text-align: center;
}

.external-text {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  opacity: 0.85;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  border: 2px solid #ff8c1a;
  background: transparent;
  color: #ff8c1a;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: #ff8c1a;
  color: #000;
}
