:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --accent: #ec4899;
  --accent-dark: #db2777;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --surface-glass-border: rgba(255, 255, 255, 0.35);
  --text: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --primary: #818cf8;
    --primary-dark: #6366f1;
    --primary-light: #a5b4fc;
    --accent: #f472b6;
    --accent-dark: #ec4899;
    --bg: #0f172a;
    --bg-alt: #1e293b;
    --surface: #1e293b;
    --surface-glass: rgba(30, 41, 59, 0.78);
    --surface-glass-border: rgba(255, 255, 255, 0.08);
    --text: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --border: #334155;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.5);
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--transition-base), color var(--transition-base);
}

::selection {
  background-color: var(--primary);
  color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

ul, ol {
  list-style: none;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-glass);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--surface-glass-border);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

header:hover {
  box-shadow: var(--shadow-md);
}

header nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

header nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 0;
}

header nav ul::-webkit-scrollbar {
  display: none;
}

header nav ul li {
  flex-shrink: 0;
}

header nav ul li a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--transition-fast);
  position: relative;
}

header nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: transform var(--transition-base);
}

header nav ul li a:hover {
  color: var(--primary);
  background: rgba(99, 102, 241, 0.08);
}

header nav ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ===== MAIN ===== */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

section:nth-child(1) { animation-delay: 0.05s; }
section:nth-child(2) { animation-delay: 0.1s; }
section:nth-child(3) { animation-delay: 0.15s; }
section:nth-child(4) { animation-delay: 0.2s; }
section:nth-child(5) { animation-delay: 0.25s; }
section:nth-child(6) { animation-delay: 0.3s; }
section:nth-child(7) { animation-delay: 0.35s; }
section:nth-child(8) { animation-delay: 0.4s; }
section:nth-child(9) { animation-delay: 0.45s; }
section:nth-child(10) { animation-delay: 0.5s; }
section:nth-child(11) { animation-delay: 0.55s; }
section:nth-child(12) { animation-delay: 0.6s; }
section:nth-child(13) { animation-delay: 0.65s; }
section:nth-child(14) { animation-delay: 0.7s; }
section:nth-child(15) { animation-delay: 0.75s; }
section:nth-child(16) { animation-delay: 0.8s; }
section:nth-child(17) { animation-delay: 0.85s; }
section:nth-child(18) { animation-delay: 0.9s; }
section:nth-child(19) { animation-delay: 0.95s; }
section:nth-child(20) { animation-delay: 1s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HERO ===== */
#hero {
  position: relative;
  margin-top: 32px;
  padding: 64px 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 30%, #ec4899 70%, #f43f5e 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite, fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 45%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#hero h1 {
  position: relative;
  z-index: 1;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

#hero p {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  max-width: 900px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* ===== HEADINGS ===== */
h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  position: relative;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

section:hover > h2::after {
  width: 100px;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 12px;
  line-height: 1.45;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 20px 0 8px;
}

p {
  margin-bottom: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* ===== CARDS (generic section content) ===== */
#brand,
#about,
#history,
#culture,
#products,
#advantages,
#solutions,
#industry,
#cases,
#reviews,
#news,
#articles,
#knowledge,
#faq,
#howto,
#contact,
#sitemap,
#links,
#author,
#security {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

#brand:hover,
#about:hover,
#history:hover,
#culture:hover,
#products:hover,
#advantages:hover,
#solutions:hover,
#industry:hover,
#cases:hover,
#reviews:hover,
#news:hover,
#articles:hover,
#knowledge:hover,
#faq:hover,
#howto:hover,
#contact:hover,
#sitemap:hover,
#links:hover,
#author:hover,
#security:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--primary-light);
}

/* ===== PRODUCTS / ADVANTAGES / SOLUTIONS / INDUSTRY ===== */
#products h3,
#advantages h3,
#solutions h3,
#industry h3 {
  padding: 14px 18px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  margin: 20px 0 10px;
  transition: all var(--transition-base);
}

#products h3:hover,
#advantages h3:hover,
#solutions h3:hover,
#industry h3:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.06));
  border-left-color: var(--accent);
  transform: translateX(4px);
}

/* ===== CASES ===== */
#cases h3 {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ===== REVIEWS ===== */
#reviews blockquote {
  position: relative;
  margin: 20px 0;
  padding: 24px 28px 24px 52px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

#reviews blockquote::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.35;
  font-family: Georgia, serif;
}

#reviews blockquote:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(236, 72, 153, 0.04));
  border-color: var(--primary-light);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

#reviews blockquote p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* ===== NEWS & ARTICLES ===== */
#news article,
#articles article {
  padding: 24px 28px;
  margin-bottom: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

#news article::before,
#articles article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity var(--transition-base);
}

#news article:hover,
#articles article:hover {
  background: var(--surface);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

#news article:hover::before,
#articles article:hover::before {
  opacity: 1;
}

#news article h3,
#articles article h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--text);
  transition: color var(--transition-fast);
}

#news article:hover h3,
#articles article:hover h3 {
  color: var(--primary);
}

#news article p:first-of-type,
#articles article p:first-of-type {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

#news article a,
#articles article a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: all var(--transition-fast);
}

#news article a::after,
#articles article a::after {
  content: '\2192';
  transition: transform var(--transition-fast);
}

#news article a:hover::after,
#articles article a:hover::after {
  transform: translateX(4px);
}

#news article a:hover,
#articles article a:hover {
  color: var(--accent);
}

/* ===== FAQ ===== */
#faq h3 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  margin: 16px 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid transparent;
  transition: all var(--transition-base);
  cursor: default;
}

#faq h3::before {
  content: 'Q';
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

#faq h3:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.05));
  border-color: var(--primary-light);
  transform: translateX(4px);
}

#faq h3 + p {
  padding: 0 20px 0 60px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* ===== HOWTO ===== */
#howto ol {
  counter-reset: howto;
  padding-left: 0;
  margin: 16px 0 24px;
}

#howto ol li {
  counter-increment: howto;
  position: relative;
  padding: 14px 20px 14px 56px;
  margin-bottom: 10px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

#howto ol li::before {
  content: counter(howto);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
  transition: transform var(--transition-fast);
}

#howto ol li:hover {
  background: var(--surface);
  border-color: var(--primary-light);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

#howto ol li:hover::before {
  transform: translateY(-50%) scale(1.15);
}

/* ===== CONTACT ===== */
#contact p {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 0;
  font-size: 0.95rem;
}

#contact p:last-child {
  border-bottom: none;
}

#contact p strong,
#contact p:first-child {
  color: var(--text);
  font-weight: 600;
}

/* ===== SITEMAP & LINKS ===== */
#sitemap ul,
#links ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}

#sitemap ul li a,
#links ul li a {
  display: block;
  padding: 10px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

#sitemap ul li a:hover,
#links ul li a:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.06));
  color: var(--primary);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===== KNOWLEDGE ===== */
#knowledge p {
  font-size: 0.95rem;
  line-height: 1.9;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 48px 0 32px;
  transition: background var(--transition-base), border-color var(--transition-base);
}

footer section {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

footer section:nth-child(1) { animation-delay: 0.1s; }
footer section:nth-child(2) { animation-delay: 0.2s; }
footer section:nth-child(3) { animation-delay: 0.3s; }

footer h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding-bottom: 8px;
}

footer h2::after {
  width: 32px;
  height: 3px;
}

footer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #hero {
    padding: 48px 36px;
  }

  #hero h1 {
    font-size: 1.9rem;
  }

  main {
    padding: 0 20px 48px;
  }

  #brand,
  #about,
  #history,
  #culture,
  #products,
  #advantages,
  #solutions,
  #industry,
  #cases,
  #reviews,
  #news,
  #articles,
  #knowledge,
  #faq,
  #howto,
  #contact,
  #sitemap,
  #links,
  #author,
  #security {
    padding: 28px 28px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    font-size: 15px;
  }

  header nav {
    padding: 0 16px;
  }

  header nav ul {
    padding: 10px 0;
    gap: 2px;
  }

  header nav ul li a {
    padding: 6px 12px;
    font-size: 13px;
  }

  main {
    padding: 0 16px 40px;
  }

  #hero {
    padding: 36px 24px;
    margin-top: 20px;
    border-radius: var(--radius-lg);
  }

  #hero h1 {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }

  #hero p {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  h2 {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }

  h3 {
    font-size: 1.05rem;
    margin: 22px 0 10px;
  }

  section {
    margin-bottom: 32px;
  }

  #brand,
  #about,
  #history,
  #culture,
  #products,
  #advantages,
  #solutions,
  #industry,
  #cases,
  #reviews,
  #news,
  #articles,
  #knowledge,
  #faq,
  #howto,
  #contact,
  #sitemap,
  #links,
  #author,
  #security {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }

  #news article,
  #articles article {
    padding: 18px 20px;
  }

  #faq h3 {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  #faq h3::before {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  #faq h3 + p {
    padding: 0 16px 0 52px;
    font-size: 0.9rem;
  }

  #howto ol li {
    padding: 12px 16px 12px 48px;
    font-size: 0.9rem;
  }

  #howto ol li::before {
    left: 12px;
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  #reviews blockquote {
    padding: 18px 20px 18px 44px;
  }

  #reviews blockquote::before {
    font-size: 2.8rem;
    top: 6px;
    left: 12px;
  }

  #sitemap ul,
  #links ul {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 6px;
  }

  #sitemap ul li a,
  #links ul li a {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  #contact p {
    font-size: 0.88rem;
    flex-direction: column;
    gap: 2px;
  }

  footer {
    padding: 32px 0 24px;
  }

  footer section {
    padding: 0 16px;
    margin-bottom: 18px;
  }

  footer h2 {
    font-size: 1rem;
  }

  footer p {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  #hero {
    padding: 28px 18px;
  }

  #hero h1 {
    font-size: 1.3rem;
  }

  #hero p {
    font-size: 0.85rem;
  }

  h2 {
    font-size: 1.15rem;
  }

  #brand,
  #about,
  #history,
  #culture,
  #products,
  #advantages,
  #solutions,
  #industry,
  #cases,
  #reviews,
  #news,
  #articles,
  #knowledge,
  #faq,
  #howto,
  #contact,
  #sitemap,
  #links,
  #author,
  #security {
    padding: 18px 14px;
  }

  #news article,
  #articles article {
    padding: 14px 16px;
  }

  #sitemap ul,
  #links ul {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  section {
    opacity: 1;
    transform: none;
  }

  #hero {
    animation: none;
  }
}

/* ===== HIGH CONTRAST ===== */
@media (prefers-contrast: high) {
  :root {
    --border: #000000;
    --text-secondary: #1e293b;
    --text-muted: #475569;
  }

  header {
    border-bottom-width: 2px;
  }

  a:focus-visible {
    outline-width: 3px;
  }
}

/* ===== PRINT ===== */
@media print {
  header,
  footer,
  #hero::before,
  #hero::after {
    display: none;
  }

  body {
    background: #ffffff;
    color: #000000;
    font-size: 12pt;
  }

  section {
    opacity: 1;
    transform: none;
    box-shadow: none;
    border: 1px solid #cccccc;
    break-inside: avoid;
  }

  #hero {
    background: #f0f0f0;
    box-shadow: none;
  }

  #hero h1,
  #hero p {
    color: #000000;
    text-shadow: none;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }
}