.loading,
.notFound {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #666;
}

.heroSection {
  position: relative;
  min-height: 420px;
  background: #0a1628;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.heroBg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0a1628 0%, #112040 40%, #1a3a5c 100%);
}

.heroPattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9923a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.heroGlow {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 146, 58, 0.08) 0%, transparent 70%);
}

.heroContainer {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.heroInner {
  display: block;
}

.heroLeft {
  position: relative;
  max-width: 680px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #c9923a;
}

.separator {
  color: rgba(255, 255, 255, 0.35);
}

.current {
  color: #c9923a;
}

.heroTitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.heroWave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.heroWave svg {
  display: block;
  width: 100%;
}

.contentSection {
  padding: 80px 0;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pageTitle {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 3px solid #c9923a;
}

.pageTitle h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0;
  line-height: 1.3;
}

.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 60px;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.description h2 {
  color: #0a1628;
  margin-top: 40px;
  margin-bottom: 20px;
}

.description h3 {
  color: #0a1628;
  margin-top: 30px;
  margin-bottom: 15px;
}

.description p {
  margin-bottom: 20px;
}

.description ul,
.description ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.description li {
  margin-bottom: 10px;
}

.pdfSection {
  margin-top: 60px;
}

.pdfViewer {
  width: 100%;
  height: 900px;
  border: 3px solid #c9923a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

.pdfFrame {
  width: 100%;
  height: 100%;
  border: none;
}

.pdfMobileFallback {
  display: none;
}

.downloadButton {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, #c9923a 0%, #b8822a 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 146, 58, 0.3);
  text-align: center;
}

.downloadButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 146, 58, 0.4);
}

@media (max-width: 768px) {
  .heroSection {
    min-height: 320px;
    padding: 100px 0 60px;
  }

  .heroTitle {
    font-size: 2rem;
  }

  .contentSection {
    padding: 60px 0;
  }

  .pageTitle h2 {
    font-size: 1.8rem;
  }

  .description {
    font-size: 1rem;
    padding: 30px 20px;
  }

  .pdfViewer {
    display: none;
  }

  .pdfMobileFallback {
    display: block;
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 2px solid #c9923a;
  }
}
