:root {
  --primary: #FC9C4A;
  --primary-dark: #FF7D0E;
  --accent: #006CF0;
  --dark: #38393D;
  --light: #F8F9FC;
  --gray: #707278;
  --gray-light: #F2F3F9;
  --gray-border: #DBDDE2;
}

article {
  line-height: 1.7;
  color: var(--dark);
  background: var(--light);
}

.header {
  background: linear-gradient(135deg, #FF7D0E 0%, #FC9C4A 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L60 30L30 60L0 30Z" fill="rgba(255,255,255,0.03)"/></svg>');
  opacity: 0.5;
}

.header-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

h1 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 3.5em;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.3em;
  opacity: 0.95;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 30px;
}

.meta {
  opacity: 0.8;
  font-size: 0.95em;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  background: white;
}

h2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 2.2em;
  margin: 60px 0 25px;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.01em;
  border-bottom: 3px solid #FC9C4A;
  padding-bottom: 10px;
}

h3 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.6em;
  margin: 40px 0 20px;
  color: var(--dark);
  font-weight: 600;
}

p {
  margin-bottom: 25px;
  font-size: 1.1em;
  line-height: 1.8;
}

.intro {
  font-size: 1.25em;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid var(--primary);
}

.callout {
  background: linear-gradient(135deg, #FF7D0E 0%, #FC9C4A 100%);
  color: white;
  padding: 35px 40px;
  border-radius: 12px;
  margin: 40px 0;
  font-size: 1.15em;
  line-height: 1.7;
  box-shadow: 0 10px 30px rgba(255, 125, 14, 0.2);
}

.callout strong {
  font-weight: 700;
  font-size: 1.1em;
  display: block;
  margin-bottom: 10px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.stat-box {
  background: var(--gray-light);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--gray-border);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #FC9C4A;
}

.stat-number {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 3em;
  color: #FC9C4A;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.stat-label {
  color: var(--gray);
  font-size: 0.95em;
  margin-top: 12px;
  font-weight: 500;
}

.insight {
  background: #fef3c7;
  border-left: 5px solid #f59e0b;
  padding: 25px 30px;
  margin: 35px 0;
  border-radius: 8px;
}

.insight strong {
  color: #92400e;
  display: block;
  margin-bottom: 10px;
  font-size: 1.05em;
}

.comparison {
  background: #E5F4FF;
  border-left: 5px solid #006CF0;
  padding: 25px 30px;
  margin: 35px 0;
  border-radius: 8px;
}

.comparison strong {
  color: #0047B8;
  display: block;
  margin-bottom: 10px;
  font-size: 1.05em;
}

.warning {
  background: #fee2e2;
  border-left: 5px solid #dc2626;
  padding: 25px 30px;
  margin: 35px 0;
  border-radius: 8px;
}

.warning strong {
  color: #991b1b;
  display: block;
  margin-bottom: 10px;
  font-size: 1.05em;
}

ul,
ol {
  margin: 25px 0 25px 30px;
}

li {
  margin: 12px 0;
  line-height: 1.7;
}

hr {
  border: none;
  border-top: 2px solid #e2e8f0;
  margin: 60px 0;
}

.highlight {
  background: linear-gradient(120deg, #fef3c7 0%, #fef3c7 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 85%;
  padding: 2px 0;
}

a {
  color: #006CF0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

a:hover {
  border-bottom-color: #006CF0;
}

.footer {
  text-align: center;
  padding: 50px 20px;
  color: var(--gray);
  font-size: 0.95em;
  font-style: italic;
  background: var(--light);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 1.8em;
  }

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