:root {
  --brand-orange: #ff6600;
  --brand-orange-dark: #e55a00;
  --brand-navy: #1a1a2e;
  --brand-navy-light: #16213e;
  --brand-gray: #f4f6f8;
  --text-muted-custom: #6c757d;
}

body {
  font-family: "Noto Sans Thai", system-ui, -apple-system, sans-serif;
  color: #212529;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.text-brand {
  color: var(--brand-orange);
}

.bg-brand {
  background-color: var(--brand-orange);
}

.bg-navy {
  background-color: var(--brand-navy);
}

.btn-brand {
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--brand-orange-dark);
  border-color: var(--brand-orange-dark);
  color: #fff;
}

.btn-outline-brand {
  border: 2px solid var(--brand-orange);
  color: var(--brand-orange);
  font-weight: 600;
}

.btn-outline-brand:hover {
  background-color: var(--brand-orange);
  color: #fff;
}

.site-header {
  background: var(--brand-navy);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.site-header .navbar-brand img {
  height: 40px;
  width: auto;
}

.site-header .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--brand-orange);
}

.hero-section {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 60%, #0f3460 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-banner.jpg") center/cover no-repeat;
  opacity: 0.18;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  background: rgba(255, 102, 0, 0.2);
  border: 1px solid var(--brand-orange);
  color: #ffd4b8;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.trust-bar {
  background: var(--brand-gray);
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #495057;
}

.section-title {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 2px;
}

.mirror-card {
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mirror-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-orange);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 102, 0, 0.12);
  color: var(--brand-orange);
  font-size: 1.5rem;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.content-card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.content-card img {
  border-radius: 0.75rem 0.75rem 0 0;
  object-fit: cover;
  height: 220px;
  width: 100%;
}

.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item .accordion-button {
  font-weight: 600;
  background: #fff;
}

.faq-item .accordion-button:not(.collapsed) {
  background: rgba(255, 102, 0, 0.08);
  color: var(--brand-orange);
  box-shadow: none;
}

.site-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand-orange);
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  font-size: 0.85rem;
}

.cta-strip {
  background: linear-gradient(90deg, var(--brand-orange) 0%, #ff8533 100%);
  color: #fff;
}

.breadcrumb-section {
  background: var(--brand-gray);
  border-bottom: 1px solid #e9ecef;
}

.table-brand thead {
  background: var(--brand-navy);
  color: #fff;
}

.update-badge {
  font-size: 0.8rem;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

@media (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

  .content-card img {
    height: 180px;
  }
}