:root { --maxw: 980px; }
* { box-sizing: border-box; }
body { margin:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
.site-header { position: sticky; top:0; background:#fff; border-bottom:1px solid #eaeaea; z-index: 10; }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding: 14px 0; gap: 12px; }
.brand { font-weight: 700; letter-spacing: .2px; }
.nav { display:flex; flex-wrap:wrap; gap: 12px; align-items:center; font-size: 14px; }
.content { padding: 24px 16px 40px; }
h1 { font-size: 28px; margin: 0 0 12px; }
h2 { font-size: 20px; margin-top: 24px; }
hr { border:0; border-top: 1px solid #eaeaea; margin: 18px 0; }
.card { border:1px solid #eaeaea; border-radius: 14px; padding: 16px; background: #fff; }
.grid { display:grid; gap: 14px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 700px){ .grid-2 { grid-template-columns: 1fr; } .nav { gap:10px; } }
.site-footer { border-top:1px solid #eaeaea; padding: 18px 0; background:#fff; }
.footer-inner { display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap; font-size: 14px; }
.footer-links { display:flex; gap: 12px; }
.dropdown { position: relative; }
.dropdown-menu { display:none; position:absolute; top: 100%; left:0; background:#fff; border:1px solid #eaeaea; border-radius: 12px; padding: 8px; min-width: 180px; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display:block; }
.dropdown-menu a { display:block; padding: 6px 8px; border-radius: 8px; }
.dropdown-menu a:hover { background:#f6f6f6; text-decoration:none; }

.form-row { display:flex; gap: 10px; flex-wrap:wrap; }
input[type="text"], input[type="email"], textarea { width: 100%; padding: 10px 12px; border:1px solid #d9d9d9; border-radius: 10px; font: inherit; }
button { padding: 10px 14px; border: 1px solid #111; background:#111; color:#fff; border-radius: 10px; cursor: pointer; }
button:hover { opacity: .92; }
.notice { padding: 10px 12px; border-radius: 10px; background: #f6f6f6; border: 1px solid #eaeaea; }
.small { font-size: 13px; opacity: .85; }
.logo {
  height: 34px;
  width: auto;
  display: block;
}
.brand { 
  display:flex; 
  align-items:center; 
  gap:10px; 
}
.service-card h3 { margin-top: 10px; }

.service-img{
  width:100%;
  height: 180px;
  object-fit: contain;
  background-color: #f6f6f6;
  border-radius: 12px;
  display:block;
  border: 1px solid #eaeaea;
}
.title-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.title-line span {
  font-size: 16px;
  opacity: 0.75;
}
@media (max-width: 600px) {
  .title-line {
    flex-direction: column;
    gap: 4px;
  }
}

.service-link {
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}

.service-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  text-decoration: none;
}

.service-link:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}
.btn-cta{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.btn-cta:hover{
  opacity: 0.9;
}
.footer-links {
  display: flex;
  gap: 14px;
}

.footer-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f6f6f6;
  transition: background .2s ease, transform .2s ease;
}

.footer-icon svg {
  width: 20px;
  height: 20px;
  fill: #111;
}

.footer-icon:hover {
  background: #111;
  transform: translateY(-1px);
}

.footer-icon:hover svg {
  fill: #fff;
}

