body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: #fff;
  color: #222;
  padding-top: 120px;
  font-size: 14.4px;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 3px solid #e67e22;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.header-inner.centered-logo {
  position: relative;
}
.header-inner.centered-logo .main-logo {
  height: 87px;
  margin: 10px auto;
  display: block;
}
.header-inner.centered-logo .f-logo {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 40px 0 40px;
}
.video-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 16/9;
}
.unmute-overlay-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

/* Text */
article.copy {
  max-width: 900px;
  margin: 30px auto;
  line-height: 1.6;
  padding: 0 10px;
}
article.copy h2 {
  color: #e67e22;
  font-weight: 800;
  text-align: center;
  font-size: 1.4em;
}

/* Buttons */
.button-group {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  margin-top: 25px;
  flex-wrap: nowrap;
}
.service-btn {
  flex: 1 1 25%;
  text-align: center;
  background: linear-gradient(180deg, #fbd54b 0%, #f5a623 100%);
  border: 1.5px solid #000;
  color: #000;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 0;
  border-radius: 12px;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4),
              0 5px 0 #b36c12,
              0 6px 12px rgba(0,0,0,0.2);
}
.service-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ffe26b 0%, #f4a832 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),
              0 7px 0 #b36c12,
              0 10px 16px rgba(0,0,0,0.25);
}
.service-btn:active {
  transform: translateY(2px);
  background: linear-gradient(180deg, #f4b632 0%, #d17a0e 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3),
              0 2px 0 #b36c12,
              0 4px 8px rgba(0,0,0,0.2);
}

/* Footer */
.site-footer {
  background: #111;
  color: #fff;
  padding: 25px 0;
  margin-top: 40px;
}
.footer-inner { 
  display: flex; 
  justify-content: center; 
}
.credentials {
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
}
