* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-bg: #0a0f1c;
  --secondary-bg: #111827;
  --card-bg: #1a2332;
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-orange: #f97316;
  --accent-purple: #a855f7;
  --accent-pink: #ec4899;
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --border-color: #1f2937;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #0a0f1c 0%, #1a1f35 50%, #0a0f1c 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
/* Anniversary Banner */
.anniversary-banner {
  padding: 20px 0 20px 40px;
  position: absolute;
  z-index: 998;
  animation: slideIn 0.6s ease;
}

.anniversary-banner.hidden {
  display: none;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.banner-content {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.95),
    rgba(251, 146, 60, 0.95)
  );
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.banner-icon {
  font-size: 22px;
  animation: bounce 1s ease infinite;
}

.banner-content p {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.banner-content a {
  color: white;
  text-decoration: underline;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.banner-content a:hover {
  opacity: 0.8;
}

.banner-close {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  padding: 0;
}

.banner-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .anniversary-banner {
    padding: 18px 0 18px 30px;
  }

  .banner-content {
    padding: 10px 18px;
    gap: 10px;
  }

  .banner-content p {
    font-size: 13px;
  }

  .banner-icon {
    font-size: 20px;
  }

  .banner-close {
    width: 26px;
    height: 26px;
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .anniversary-banner {
    padding: 15px 0 15px 20px;
  }

  .banner-content {
    padding: 10px 16px;
    gap: 10px;
  }

  .banner-content p {
    font-size: 12px;
  }

  .banner-icon {
    font-size: 18px;
  }

  .banner-close {
    width: 24px;
    height: 24px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .anniversary-banner {
    padding: 12px 0 12px 15px;
  }

  .banner-content {
    padding: 8px 12px;
    gap: 8px;
    border-radius: 20px;
  }

  .banner-content p {
    font-size: 11px;
    letter-spacing: 0.3px;
  }

  .banner-icon {
    font-size: 16px;
  }

  .banner-close {
    width: 22px;
    height: 22px;
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .anniversary-banner {
    padding: 10px 0 10px 12px;
  }

  .banner-content {
    padding: 7px 10px;
    gap: 7px;
    border-radius: 18px;
  }

  .banner-content p {
    font-size: 10px;
    letter-spacing: 0.2px;
  }

  .banner-icon {
    font-size: 15px;
  }

  .banner-close {
    width: 20px;
    height: 20px;
    font-size: 15px;
  }
}

/* Animated Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(249, 115, 22, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(168, 85, 247, 0.1) 0%,
      transparent 50%
    );
  animation: backgroundShift 20s ease infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes backgroundShift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-50px, 50px);
  }
}

/* Floating Particles */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  pointer-events: none;
  animation: floatUp 15s infinite;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Navigation with Glass Effect */
.navbar {
  background: rgba(10, 15, 28, 0.8);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1001;
  animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.brand-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  animation: pulseGlow 2s ease infinite;
  border: 3px solid rgba(59, 130, 246, 0.3);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  }
  50% {
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.8);
  }
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text h3 {
  font-size: 18px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-text p {
  font-size: 12px;
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 10px 18px;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(59, 130, 246, 0.1);
}

.nav-links a:hover::before {
  width: 70%;
}

.nav-links a.active {
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-cyan);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section with 3D Effect */
.hero {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.2) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(6, 182, 212, 0.2)
  );
  backdrop-filter: blur(10px);
  color: var(--accent-cyan);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  animation: slideDown 0.8s ease 0.2s backwards;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  animation: slideDown 0.8s ease 0.3s backwards;
}

.hero-title {
  font-size: 56px;
  line-height: 1.2;
  margin: 20px 0 30px;
  font-weight: 900;
  animation: slideDown 0.8s ease 0.4s backwards;
}

.highlight-blue {
  color: var(--accent-blue);
}

.highlight-gradient {
  background: linear-gradient(
    135deg,
    var(--accent-orange),
    var(--accent-cyan),
    var(--accent-purple)
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  animation: slideDown 0.8s ease 0.6s backwards;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: slideDown 0.8s ease 0.8s backwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), #fb923c);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
}

.btn-secondary {
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  padding: 16px 32px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--accent-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.hero-footer {
  color: var(--text-secondary);
  font-size: 14px;
  animation: slideDown 0.8s ease 1s backwards;
}

/* Hero Image with 3D Tilt */
.hero-image {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.8),
    rgba(17, 24, 39, 0.9)
  );
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 30px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideInScale 0.8s ease 0.4s backwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-image:hover {
  box-shadow: 0 25px 70px rgba(59, 130, 246, 0.3);
}

.image-badge {
  position: absolute;
  top: 50px;
  left: 50px;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.9),
    rgba(251, 146, 60, 0.9)
  );
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
  animation: floatBadge 3s ease infinite;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.image-caption h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.image-caption p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.image-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.image-tags span {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(6, 182, 212, 0.2)
  );
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.image-tags span:hover {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.3),
    rgba(6, 182, 212, 0.3)
  );
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Sections */
.highlights,
.about,
.early-life,
.significance,
.legacy {
  padding: 100px 0;
  position: relative;
}

.highlights {
  background: rgba(17, 24, 39, 0.3);
  backdrop-filter: blur(10px);
}

.section-label {
  color: var(--accent-cyan);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 900;
}

.section-description {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 800px;
  line-height: 1.8;
}

/* Cards with Hover Effects */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.8),
    rgba(17, 24, 39, 0.9)
  );
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.2),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: grayscale(30%);
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  filter: grayscale(0%);
  transform: scale(1.1) rotate(5deg);
}

.card-label {
  color: var(--accent-orange);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-title {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: var(--accent-cyan);
}

.card-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 15px;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About Section */
.about {
  background: transparent;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-subtitle {
  color: var(--accent-orange);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-description {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.about-image-placeholder {
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.8),
    rgba(17, 24, 39, 0.9)
  );
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-images {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.about-images img {
  width: 140px;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-images img:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.about-quote {
  text-align: center;
}

.about-quote p {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--text-primary);
}

.about-quote span {
  color: var(--accent-cyan);
  font-size: 14px;
  font-weight: 600;
}

/* Timeline */
.early-life {
  background: rgba(17, 24, 39, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  padding-left: 50px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--accent-blue),
    var(--accent-cyan),
    var(--accent-orange)
  );
  border-radius: 10px;
}

.timeline-item {
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.9),
    rgba(17, 24, 39, 0.95)
  );
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  border-left: 4px solid var(--accent-blue);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -53px;
  top: 30px;
  width: 20px;
  height: 20px;
  background: var(--accent-blue);
  border-radius: 50%;
  border: 4px solid var(--secondary-bg);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.timeline-item:hover::before {
  background: var(--accent-orange);
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.3);
  transform: scale(1.2);
}

.timeline-item:hover {
  transform: translateX(10px) translateY(-5px);
  border-left-color: var(--accent-orange);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.timeline-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-item h4 {
  font-size: 20px;
  margin: 20px 0;
  color: var(--accent-orange);
  padding: 15px 20px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 10px;
  border-left: 3px solid var(--accent-orange);
}

.timeline-item p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.8;
}

.timeline-item ul {
  margin: 15px 0 15px 30px;
  color: var(--text-secondary);
}

.timeline-item ul li {
  margin: 8px 0;
  position: relative;
  padding-left: 10px;
}

.timeline-item ul li::before {
  content: "→";
  position: absolute;
  left: -15px;
  color: var(--accent-blue);
  font-weight: bold;
}

.position-highlight {
  color: var(--accent-orange);
  font-size: 22px;
  font-weight: 700;
}

/* Timeline Gallery */
.timeline-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.timeline-gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgba(59, 130, 246, 0.2);
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.timeline-gallery img:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

/* Significance Section */
.significance {
  background: transparent;
}

.significance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  counter-reset: significance-counter;
}

.significance-card {
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.9),
    rgba(17, 24, 39, 0.95)
  );
  backdrop-filter: blur(20px);
  padding: 45px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.significance-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(
    to bottom,
    var(--accent-blue),
    var(--accent-cyan)
  );
  transition: height 0.6s ease;
}

.significance-card:hover::before {
  height: 100%;
}

.significance-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.card-number::before {
  counter-increment: significance-counter;
  content: counter(significance-counter, decimal-leading-zero);
  font-size: 72px;
  font-weight: 900;
  position: absolute;
  top: -20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  transition: all 0.4s ease;
}

.significance-card:hover .card-number::before {
  opacity: 0.25;
  transform: scale(1.1);
}

.significance-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.significance-card p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.9;
}

.significance-card ul {
  margin: 20px 0;
  color: var(--text-secondary);
  list-style: none;
  padding-left: 0;
}

.significance-card ul li {
  margin: 12px 0;
  padding-left: 35px;
  position: relative;
}

.significance-card ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-size: 18px;
  transition: all 0.3s ease;
}

.significance-card:hover ul li::before {
  color: var(--accent-cyan);
  transform: scale(1.2) rotate(90deg);
}

.card-highlight {
  color: var(--text-primary) !important;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(6, 182, 212, 0.15)
  );
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  font-weight: 500;
  border-left: 3px solid var(--accent-cyan);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.significance-card:hover .card-highlight {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(6, 182, 212, 0.2)
  );
  transform: translateX(5px);
  border-left-color: var(--accent-orange);
}

/* Legacy Section */
.legacy {
  background: linear-gradient(
    to bottom,
    var(--primary-bg),
    var(--secondary-bg)
  );
  position: relative;
  overflow: hidden;
}

.legacy::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.legacy::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.legacy-timeline {
  margin: 60px 0;
  position: relative;
}

.legacy-milestone {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.milestone-year {
  text-align: right;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.milestone-year::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--accent-orange);
  border-radius: 50%;
  border: 4px solid var(--secondary-bg);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.3);
}

.legacy-milestone:hover .milestone-year {
  transform: scale(1.05);
}

.legacy-milestone:hover .milestone-year::after {
  background: var(--accent-cyan);
  box-shadow: 0 0 0 8px rgba(6, 182, 212, 0.3);
}

.milestone-content {
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.8),
    rgba(17, 24, 39, 0.9)
  );
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-left: 4px solid var(--accent-blue);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.milestone-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(6, 182, 212, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.milestone-content:hover::before {
  opacity: 1;
}

.milestone-content:hover {
  transform: translateX(10px) translateY(-5px);
  border-left-color: var(--accent-orange);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.milestone-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--accent-cyan);
  position: relative;
  z-index: 1;
}

.milestone-content p {
  color: var(--text-secondary);
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.legacy-achievements {
  margin: 80px 0;
}

.legacy-achievements h3 {
  font-size: 32px;
  margin-bottom: 50px;
  text-align: center;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.achievement-card {
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.8),
    rgba(17, 24, 39, 0.9)
  );
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at top,
    rgba(59, 130, 246, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.achievement-card:hover::before {
  opacity: 1;
}

.achievement-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-blue);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.achievement-icon {
  font-size: 56px;
  margin-bottom: 20px;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.2) rotateY(360deg);
  filter: grayscale(0%);
}

.achievement-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--accent-cyan);
  transition: color 0.3s ease;
}

.achievement-card:hover h4 {
  color: var(--accent-blue);
}

.achievement-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.legacy-quote {
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.9),
    rgba(17, 24, 39, 0.95)
  );
  padding: 60px;
  border-radius: 25px;
  border-left: 5px solid var(--accent-orange);
  margin: 80px 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.legacy-quote::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 120px;
  color: var(--accent-blue);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.legacy-quote blockquote {
  margin: 0;
  position: relative;
  z-index: 1;
}

.legacy-quote p {
  font-size: 24px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.legacy-quote cite {
  font-size: 16px;
  color: var(--accent-cyan);
  font-style: normal;
  font-weight: 600;
}

.legacy-highlights {
  margin: 80px 0;
}

.legacy-highlights h3 {
  font-size: 32px;
  margin-bottom: 50px;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--accent-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlights-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.highlight-card {
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.8),
    rgba(17, 24, 39, 0.9)
  );
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-top: 4px solid var(--accent-cyan);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.highlight-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--accent-orange);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.highlight-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--accent-cyan);
  transition: color 0.3s ease;
}

.highlight-card:hover h4 {
  color: var(--accent-orange);
}

.highlight-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.legacy-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.8),
    rgba(17, 24, 39, 0.9)
  );
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-blue),
    var(--accent-cyan),
    var(--accent-orange)
  );
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-blue);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Footer */
.footer {
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(10px);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ========== RESPONSIVE DESIGN ========== */
/* Tablets and Small Laptops (1024px and below) */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  .nav-container {
    padding: 0 30px;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    padding: 0;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  .nav-links.active {
    max-height: 500px;
    opacity: 1;
    padding: 20px 30px;
  }
  .nav-links a {
    padding: 15px 10px;
    text-align: left;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    display: block;
  }
  .nav-links a::before {
    display: none;
  }
  .nav-links a:hover {
    background: rgba(59, 130, 246, 0.2);
  }
  .nav-links a.active {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
  }
  .hero-content {
    padding: 0 30px;
    gap: 40px;
  }
  .hero-title {
    font-size: 40px;
  }
  .section-title {
    font-size: 32px;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .timeline-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
  }
  .timeline-gallery img {
    height: 350px;
  }
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlights-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .legacy-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .nav-container {
    padding: 0 20px;
  }
  .navbar {
    padding: 15px 0;
  }
  .nav-links.active {
    padding: 20px 20px;
  }
  .brand-icon {
    width: 60px;
    height: 60px;
  }
  .brand-text h3 {
    font-size: 15px;
  }
  .brand-text p {
    font-size: 11px;
  }
  /* Hero Section */
  .hero {
    padding: 60px 0;
  }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 40px;
  }
  .hero-title {
    font-size: 36px;
    line-height: 1.3;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }
  .hero-image {
    padding: 20px;
  }
  .hero-image img {
    height: 350px;
  }
  .image-badge {
    top: 30px;
    left: 30px;
    font-size: 11px;
    padding: 6px 12px;
  }
  .image-caption h3 {
    font-size: 22px;
  }
  .image-tags {
    gap: 6px;
  }
  .image-tags span {
    font-size: 10px;
    padding: 5px 10px;
  }
  /* Sections */
  .highlights,
  .about,
  .early-life,
  .significance,
  .legacy {
    padding: 60px 0;
  }
  .section-title {
    font-size: 28px;
  }
  .section-description {
    font-size: 16px;
    margin-bottom: 40px;
  }
  /* Cards Grid */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card {
    padding: 25px;
  }
  .card-title {
    font-size: 18px;
  }
  /* About Section */
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-placeholder {
    padding: 30px 20px;
    min-height: 250px;
    gap: 20px;
  }
  .about-images {
    gap: 12px;
  }
  .about-images img {
    width: 120px;
    height: 155px;
  }
  .about-quote p {
    font-size: 18px;
  }
  .about-buttons {
    flex-direction: column;
  }
  .about-buttons .btn-primary,
  .about-buttons .btn-secondary {
    width: 100%;
  }
  /* Timeline */
  .timeline {
    padding-left: 30px;
    gap: 35px;
  }
  .timeline::before {
    left: 10px;
    width: 2px;
  }
  .timeline-item {
    padding: 25px;
    border-left-width: 3px;
  }
  .timeline-item::before {
    left: -33px;
    top: 20px;
    width: 16px;
    height: 16px;
    border-width: 3px;
  }
  .timeline-item h3 {
    font-size: 20px;
  }
  .timeline-item h4 {
    font-size: 18px;
    padding: 12px 15px;
  }
  .timeline-item ul {
    margin-left: 20px;
  }
  .position-highlight {
    font-size: 19px;
  }
  .timeline-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
  }
  .timeline-gallery img {
    height: 300px;
  }
  /* Significance */
  .significance-card {
    padding: 30px;
  }
  .significance-card h3 {
    font-size: 22px;
  }
  .card-number::before {
    font-size: 56px;
    top: -15px;
    right: 10px;
  }
  .card-highlight {
    padding: 15px;
    font-size: 14px;
  }
  /* Legacy Section */
  .legacy-milestone {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .milestone-year {
    text-align: left;
    padding-right: 0;
    font-size: 28px;
  }
  .milestone-year::after {
    display: none;
  }
  .milestone-content {
    padding: 25px;
  }
  .milestone-content h3 {
    font-size: 20px;
  }
  .achievements-grid,
  .highlights-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .achievement-card,
  .highlight-card {
    padding: 25px;
  }
  .achievement-icon {
    font-size: 48px;
  }
  .legacy-quote {
    padding: 30px 20px;
  }
  .legacy-quote::before {
    font-size: 80px;
    top: 10px;
    left: 15px;
  }
  .legacy-quote p {
    font-size: 18px;
  }
  .legacy-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stat-item {
    padding: 30px 20px;
  }
  .stat-number {
    font-size: 40px;
  }
  .footer {
    padding: 30px 0;
  }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .nav-container {
    padding: 0 15px;
  }
  .nav-links.active {
    padding: 15px;
  }
  .brand-icon {
    width: 50px;
    height: 50px;
  }
  .brand-text h3 {
    font-size: 14px;
  }
  .brand-text p {
    font-size: 10px;
  }
  .hero {
    padding: 40px 0;
  }
  .hero-content {
    padding: 0 15px;
    gap: 30px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-image {
    padding: 15px;
  }
  .hero-image img {
    height: 280px;
  }
  .image-badge {
    top: 25px;
    left: 25px;
    font-size: 10px;
    padding: 5px 10px;
  }
  .image-caption h3 {
    font-size: 20px;
  }
  .highlights,
  .about,
  .early-life,
  .significance,
  .legacy {
    padding: 50px 0;
  }
  .section-title {
    font-size: 24px;
  }
  .section-description {
    font-size: 14px;
  }
  .card {
    padding: 20px;
  }
  .timeline {
    padding-left: 25px;
    gap: 30px;
  }
  .timeline-item {
    padding: 20px;
  }
  .timeline-item::before {
    left: -30px;
    width: 14px;
    height: 14px;
  }
  .timeline-item h3 {
    font-size: 18px;
  }
  .timeline-item h4 {
    font-size: 17px;
    padding: 10px 12px;
  }
  .timeline-gallery {
    gap: 15px;
    margin-top: 40px;
  }
  .timeline-gallery img {
    height: 250px;
  }
  .significance-card {
    padding: 20px;
  }
  .significance-card h3 {
    font-size: 18px;
  }
  .card-number::before {
    font-size: 48px;
    top: -12px;
    right: 8px;
  }
  .legacy {
    padding: 50px 0;
  }
  .legacy-achievements h3,
  .legacy-highlights h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .milestone-year {
    font-size: 24px;
  }
  .milestone-content h3 {
    font-size: 18px;
  }
  .achievement-card h4,
  .highlight-card h4 {
    font-size: 18px;
  }
  .legacy-quote p {
    font-size: 16px;
  }
  .stat-number {
    font-size: 36px;
  }
  .stat-label {
    font-size: 13px;
  }
}

/* Small Mobile Devices (Below 360px) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 24px;
  }
  .section-title {
    font-size: 22px;
  }
  .hero-image img {
    height: 240px;
  }
  .card,
  .timeline-item,
  .significance-card {
    padding: 15px;
  }
  .about-image-placeholder {
    padding: 20px 12px;
    gap: 15px;
  }
  .about-images {
    gap: 8px;
  }
  .about-images img {
    width: 85px;
    height: 110px;
  }
  .about-quote p {
    font-size: 15px;
  }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
  .card:hover,
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
  .btn-primary:active {
    transform: scale(0.98);
  }
  .btn-secondary:active {
    transform: scale(0.98);
  }
  .card:active {
    transform: translateY(-3px);
  }
}

/* Large Screens (1440px and above) */
@media (min-width: 1440px) {
  .container,
  .nav-container,
  .hero-content {
    max-width: 1400px;
  }
  .hero-title {
    font-size: 56px;
  }
  .section-title {
    font-size: 42px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-buttons,
  .about-buttons,
  .footer,
  .hamburger,
  #particles {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  body::before {
    display: none;
  }
  .card,
  .timeline-item,
  .significance-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .hero,
  .highlights,
  .about,
  .early-life,
  .significance,
  .legacy {
    padding: 30px 0;
  }
}
