.regulatory-hero {
  background-image: url("assets/img/spices_certificate.jpg");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.regulatory-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.regulatory-hero .hero-content {
  position: relative;
  z-index: 1;
}

.regulatory-hero .hero-title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 16px;
}

.regulatory-hero .hero-description {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 600px;
  margin: 0 auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 36px;
  color: #1b2b4d;
  text-align: center;
  margin-bottom: 40px;
}

.compliance-info {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.compliance-text {
  font-size: 18px;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.licenses {
  padding: 80px 0;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.license-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 700px;
}

.license-item h3 {
  font-size: 24px;
  color: #1b2b4d;
  margin-bottom: 16px;
}

.pdf-viewer {
  width: 100%;
  flex-grow: 1;
  border: 1px solid #ddd;
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdf-viewer canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.download-pdf-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4caf50;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-size: 16px;
}

.download-pdf-btn:hover {
  background-color: #45a049;
}

.view-pdf-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #35419c;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.view-pdf-btn:hover {
  background-color: #2a3479;
}

@media (max-width: 768px) {
  .regulatory-hero {
    height: 250px;
  }

  .regulatory-hero .hero-title {
    font-size: 36px;
  }

  .regulatory-hero .hero-description {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .compliance-text {
    font-size: 16px;
  }

  .license-item h3 {
    font-size: 20px;
  }

  .pdf-viewer {
    height: 300px;
  }
  .license-item {
    height: 500px;
  }
  .button-group {
    flex-direction: column;
  }
}

.pdf-note {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
}

