@scope(.section1){

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

.compliance-page {
  width: 100%;
}

.container {
  max-width: 1280px;
  /* justify-content: center; */
  margin: 0 auto;
  padding: 0 40px;
}

/* Hero Section */
.hero-section {
  background: #212150;

  
  background-size: cover;
  background-position: center;
  /* padding: 180px 0 180px; */
  height: 40vh;
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
}

.label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #e0e0e0;
  margin-bottom: 32px;
}

.hero-title {
  font-size: 4rem;
  max-width: 1100px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 28px;
  /* letter-spacing: -0.5px; */
}

.hero-description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #f5f5f5;
  max-width: 900px;
  margin: 0 auto;
}

/* Certifications Section */
.certifications-section {
  padding: 115px 0 120px;
  background: #ffffff;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 24px;
  /* letter-spacing: -0.5px; */
}

.section-description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #4a4a4a;
  text-align: center;
  max-width: 950px;
  margin: 0 auto 80px;
}

.certification-cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.cert-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cert-card.reverse {
  /* direction: rtl; */
}

.cert-card.reverse > * {
  direction: ltr;
}

.cert-image {
  width: 100%;
  aspect-ratio: 1;
  background: #e8e8e8;
  overflow: hidden;
}

.cert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cert-content {
  padding: 20px 0;
}

.cert-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.35;
  color: #1a1a1a;
  margin-bottom: 24px;
  /* letter-spacing: -0.3px; */
}

.cert-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #4a4a4a;
  margin-bottom: 18px;
}

.cert-text:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-title {
    font-size: 36px;
  }

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

  .cert-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cert-card.reverse {
    direction: ltr;
  }

  .hero-section {
    padding: 80px 0 100px;
  }

  .certifications-section {
    padding: 60px 0 80px;
  }

  .certification-cards {
    gap: 60px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 24px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-description,
  .section-description {
    font-size: 14px;
  }

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

  .cert-title {
    font-size: 20px;
  }

  .hero-section {
    padding: 60px 0 80px;
  }

  .certifications-section {
    padding: 50px 0 60px;
  }
}
}
