* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --coral: #ff6b4a;
  --coral-dark: #e5532f;
  --mustard: #ffc107;
  --teal: #2fbcb2;
  --deep-navy: #1a2c3e;
  --gray-light: #f4efe9;
  --shadow-fresh: 0 20px 35px -12px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-card: 0 12px 24px -8px rgba(0, 0, 0, 0.08);
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', 'Poppins', sans-serif;
  background: #fff9f5;
  color: #1f1a17;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.top-bar {
  background: var(--deep-navy);
  color: white;
  padding: 10px 0;
  font-size: 0.75rem;
  text-align: center;
}

.top-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notice-18 {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.notice-operator {
  font-size: 0.68rem;
  opacity: 0.9;
}

.logo-operator {
  font-size: 0.65rem;
  font-weight: 600;
  color: #5c4030;
  margin-top: 6px;
}

.footer-mandatory {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(243, 205, 181, 0.25);
}

.footer-mandatory .notice-18 {
  color: #f3cdb5;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-mandatory .notice-operator {
  color: #c0a084;
  font-size: 0.78rem;
}

.site-header {
  border-bottom: 3px solid var(--coral);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(4px);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}

.logo a {
  text-decoration: none;
}

.logo h1,
.logo .site-name {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--coral), var(--mustard));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.logo p {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--deep-navy);
  background: var(--gray-light);
  display: inline-block;
  padding: 2px 12px;
  border-radius: 40px;
}

.disclaimer-badge {
  background: #ffefe8;
  padding: 12px 24px;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #b13e1f;
  border-left: 5px solid var(--coral);
  max-width: 550px;
}

.breadcrumb {
  padding: 20px 0 0;
  font-size: 0.85rem;
  color: #8a6f5c;
}

.breadcrumb a {
  color: var(--coral-dark);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.detail-hero {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255, 107, 74, 0.15) 0%, transparent 55%),
    linear-gradient(155deg, #fff8f2 0%, #ffe8dc 100%);
  padding: 32px 0 48px;
  border-bottom: 1px solid rgba(255, 107, 74, 0.12);
}

.detail-hero-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px 36px;
  align-items: center;
}

.detail-logo-wrap {
  background: linear-gradient(165deg, #2a3f54 0%, #1a2c3e 100%);
  border-radius: 28px;
  padding: 28px 32px;
  border: 1px solid #3d5166;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.detail-logo-wrap img {
  max-width: 160px;
  max-height: 64px;
  object-fit: contain;
}

.detail-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--deep-navy);
  margin-bottom: 12px;
}

.detail-lead {
  font-size: 1.1rem;
  color: #5c4030;
  max-width: 720px;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 18px;
}

.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-chip {
  background: white;
  border: 1px solid #ffddd0;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep-navy);
  box-shadow: var(--shadow-fresh);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn-fresh,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.2s;
}

.btn-fresh {
  background: var(--coral);
  color: white;
  border: 2px solid var(--coral);
}

.btn-fresh:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
}

.btn-outline-dark {
  background: white;
  color: var(--deep-navy);
  border: 2px solid #d4c8b8;
}

.btn-outline-dark:hover {
  border-color: var(--coral);
  color: var(--coral-dark);
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--gray-light);
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--deep-navy);
}

.section-sub {
  text-align: center;
  color: #5c3e2e;
  max-width: 700px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.prose-block {
  max-width: 900px;
  margin: 0 auto;
  background: #fffaef;
  border: 1px solid #ffd7c4;
  border-radius: 32px;
  padding: 28px 32px;
  font-size: 1rem;
  color: #4b3a2f;
  line-height: 1.7;
  font-weight: 450;
}

.prose-block p + p {
  margin-top: 14px;
}

.prose-block a,
.detail-columns a {
  color: var(--coral-dark);
  font-weight: 600;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.detail-card {
  background: white;
  border-radius: 28px;
  padding: 24px;
  border: 1px solid #ffddd0;
  box-shadow: var(--shadow-card);
}

.detail-card-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.detail-card h3 {
  font-size: 1.1rem;
  color: var(--deep-navy);
  margin-bottom: 10px;
}

.detail-card p,
.detail-card li {
  font-size: 0.92rem;
  color: #5c4030;
  line-height: 1.55;
  font-weight: 450;
}

.detail-card ul {
  list-style: none;
  margin-top: 10px;
}

.detail-card li {
  padding: 6px 0;
  border-bottom: 1px dashed #ffe1d4;
}

.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.detail-columns h3 {
  font-size: 1.2rem;
  color: var(--deep-navy);
  margin-bottom: 14px;
}

.detail-columns p,
.detail-columns li {
  font-size: 0.95rem;
  color: #5c4030;
  line-height: 1.65;
  font-weight: 450;
}

.detail-columns ul {
  list-style: none;
}

.detail-columns li {
  padding: 8px 0;
  border-bottom: 1px dashed #ffe1d4;
}

.spec-table-wrap {
  background: white;
  border-radius: 32px;
  overflow-x: auto;
  border: 1px solid #ffd9c9;
  box-shadow: var(--shadow-fresh);
  max-width: 900px;
  margin: 0 auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.spec-table th {
  background: #ffefe5;
  padding: 16px;
  text-align: left;
  color: #b13e1f;
  font-weight: 700;
}

.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #ffe0d4;
  color: #4b3a2f;
  font-weight: 450;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: 22px;
  border: 1px solid #ffddd0;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--deep-navy);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 20px 16px;
  font-size: 0.92rem;
  color: #5c4030;
  line-height: 1.6;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.related-links a {
  background: white;
  border: 1px solid #ffddd0;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--deep-navy);
  transition: 0.2s;
}

.related-links a:hover {
  border-color: var(--coral);
  color: var(--coral-dark);
}

.related-links a.is-current {
  background: var(--deep-navy);
  color: white;
  border-color: var(--deep-navy);
}

.cta-bar {
  background: linear-gradient(135deg, #1a2c3e, #2a3f54);
  border-radius: 32px;
  padding: 32px 36px;
  text-align: center;
  color: #e8ddd2;
  max-width: 900px;
  margin: 0 auto;
}

.cta-bar h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.cta-bar p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  opacity: 0.9;
}
.regulators-bar {
  background: var(--gray-light);
  border-top: 1px solid #e8ddd2;
  padding: 40px 0 36px;
}

.regulators-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--deep-navy);
  margin-bottom: 24px;
}

.regulators-logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  margin-bottom: 22px;
}

.regulators-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 72px;
  padding: 12px 20px;
  background: #d8cfc3;
  border-radius: 16px;
  border: 1px solid #c4b8a8;
}

.regulators-logos img {
  height: 44px;
  max-width: 130px;
  object-fit: contain;
}

.regulators-note {
  text-align: center;
  font-size: 0.78rem;
  color: #8a6f5c;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.55;
}

.footer {
  background: #1a2c3e;
  color: #f3cdb5;
  padding: 50px 0 30px;
  border-top: 6px solid var(--coral);
}

.footer-disclaimer {
  background: #2e4357;
  border-radius: 48px;
  padding: 20px 30px;
  font-size: 0.85rem;
  border-left: 8px solid var(--mustard);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(243, 205, 181, 0.25);
}

.footer-legal a {
  color: #f3cdb5;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 750px) {
  .detail-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .detail-logo-wrap {
    margin: 0 auto;
  }

  .detail-chips,
  .detail-actions {
    justify-content: center;
  }

  .detail-columns {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
