/* Compliance Page Styles */
.compliance-page {
  min-height: 100vh;
  background: #effaf4;
  padding: 120px 0 2rem 0;
  margin-top: 0;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 0rem;
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0a241c;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.breadcrumb-link:hover {
  background: rgba(10, 36, 28, 0.05);
  color: #49ab81;
  transform: translateX(-2px);
}

.breadcrumb-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.breadcrumb-link:hover svg {
  transform: translateX(-2px);
}

/* Page Title */
.page-title {
  margin-bottom: 3rem;
}

.page-title h1 {
  font-family: 'Nulshock', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #0a241c;
  margin: 0;
}

/* Hero Image Section */
.hero-image-section {
  margin-bottom: 3rem;
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Main Content Section */
.main-content-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Section Title */
.section-title {
  font-family: 'Nulshock', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #000000;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

/* Intro Text */
.intro-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: normal;
  font-size: 20px;
  color: #0a241c;
  line-height: 1.5;
}

.intro-text p {
  margin: 0 0 1rem 0;
  color: #0A241C;
}

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

/* Tab Navigation */
.tab-navigation {
  background: #f4f4f4;
  border-radius: 6px;
  padding: 4px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.tab-button {
  flex: 1;
  min-width: 0;
  padding: 6px 12px;
  background: transparent;
  border: none;
  border-radius: 4px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1f232c;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 21px;
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.5);
}

.tab-button.active {
  background: #ffffff;
  color: #49ab81;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Tab Content */
.tab-content {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Content Section */
.content-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-section h3 {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #0a241c;
  margin: 0;
  line-height: 1.2;
}

/* Content Text */
.content-text {
  font-family: 'Encode Sans', sans-serif;
  /* font-weight: 600; */
  font-size: 20px;
  color: #0a241c;
  line-height: 1.5;
}

.content-text ul {
  margin: 0;
  padding-left: 30px;
}

.content-text li {
  margin-bottom: 1rem;
  list-style-type: disc;
  color: #0A241C;
}

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

.content-text strong {
  font-weight: 700;
}

/* Disclaimer Box */
.disclaimer-box {
  background: #fffce6;
  border: 1px solid #8b7e00;
  border-radius: 10px;
  padding: 16px;
  position: relative;
}

.disclaimer-header {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #b3a300;
  margin-bottom: 1rem;
}

.disclaimer-content {
  font-family: 'Encode Sans', sans-serif;
  /* font-weight: 700; */
  font-size: 20px;
  color: #0a241c;
  line-height: 1.5;
}

.disclaimer-content p {
  margin: 0;
  color: #0A241C;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .tab-navigation {
    flex-direction: column;
  }

  .tab-button {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .compliance-page {
    padding: 110px 0 2rem 0;
  }

  .container {
    padding: 0 20px;
  }

  .page-title h1 {
    font-size: 28px;
  }

  .hero-image-section {
    height: 250px;
    margin-bottom: 2rem;
  }

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

  .intro-text {
    font-size: 18px;
  }

  .content-section h3 {
    font-size: 1.5rem;
  }

  .content-text {
    font-size: 13px;
  }

  .disclaimer-header,
  .disclaimer-content {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .compliance-page {
    padding: 100px 0 1rem 0;
  }

  .container {
    padding: 0 15px;
  }

  .page-title h1 {
    font-size: 1.5rem;
  }

  .hero-image-section {
    height: 200px;
    margin-bottom: 1.5rem;
  }

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

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

  .content-section h3 {
    font-size: 20px;
  }

  .content-text {
    font-size: 11px;
  }

  .disclaimer-header,
  .disclaimer-content {
    font-size: 11px;
  }

  .tab-button {
    font-size: 12px;
    padding: 8px 10px;
  }
}