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

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #8b5cf6;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  min-height: 100vh;
  padding: 0;
  padding-top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
}

/* Intro Hero Section */
.intro-hero {
  padding: 1.5rem 0;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.intro-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.3px;
}

.intro-image {
  margin-top: 2rem;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}



.lead-paragraph {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-dark);
  font-weight: 400;
}

.main-paragraph {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 400;
}

.main-paragraph strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Content Section */
.content-section {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: var(--shadow-xl);
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .content-section {
    padding: 2.5rem 1.25rem;
    border-radius: 20px;
    margin-bottom: 2rem;
  }
}

/* Step-by-Step Cards Grid */
.steps-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.step-card {
  background: linear-gradient(135deg, #f9fafb 80%, #e0e7ff 100%);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid var(--border-color);
}
.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px) scale(1.02);
}
.step-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #6366f1 60%, #8b5cf6 100%);
  box-shadow: var(--shadow-sm);
}
.step-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Enhanced Timeline */
.timeline-box.enhanced-timeline {
  margin-top: 2.5rem;
  padding: 1.5rem 1.5rem 1.2rem 1.5rem;
  background: linear-gradient(135deg, #eef2ff 80%, #f9fafb 100%);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}
.timeline {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.timeline-step {
  background: linear-gradient(135deg, #6366f1 60%, #8b5cf6 100%);
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.timeline-step.active {
  background: linear-gradient(135deg, #10b981 60%, #6366f1 100%);
}
.timeline-step.success {
  background: linear-gradient(135deg, #10b981 80%, #8b5cf6 100%);
}
.timeline-arrow {
  font-size: 1.5rem;
  color: var(--primary-dark);
  font-weight: bold;
}

/* Renewal Section Styles */
.renewal-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.renewal-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.renewal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.renewal-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.renewal-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.renewal-icon svg {
  width: 24px;
  height: 24px;
}

.renewal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.renewal-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.renewal-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Renewal Reasons List */
.renewal-reasons {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.renewal-reason-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.renewal-check {
  color: var(--success-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.renewal-check svg {
  width: 18px;
  height: 18px;
}

/* Renewal Steps */
.renewal-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.renewal-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.renewal-step-number {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.renewal-step-item span {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-dark);
}

/* Renewal Requirements */
.renewal-requirements {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.renewal-requirement-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.renewal-requirement-icon {
  color: var(--primary-color);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.renewal-requirement-icon svg {
  width: 18px;
  height: 18px;
}

.renewal-requirement-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.renewal-requirement-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* Renewal Fees Display */
.renewal-fees-display {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.renewal-fee-amount {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.renewal-fee-amount.regular {
  background: var(--bg-light);
}

.renewal-fee-amount.free {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
}

.renewal-fee-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.renewal-fee-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.renewal-fee-badge {
  display: inline-block;
  background: var(--success-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.renewal-fee-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin: 0;
}

/* Renewal Tip Box */
.renewal-tip-box {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid #c7d2fe;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.renewal-tip-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.renewal-tip-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--primary-dark);
}

.renewal-tip-box strong {
  font-weight: 700;
}


/* Stylish Tip Box */
.tip-box.stylish-tip {
  background: linear-gradient(135deg, #e0e7ff 80%, #f9fafb 100%);
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  color: var(--primary-dark);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  padding: 1.1rem 1.25rem;
  margin-top: 1.5rem;
}

.section-content {
  max-width: 850px;
  margin: 0 auto;
}

.section-content > h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .section-content > h2 {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
  }
  
  .section-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.section-intro {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.section-conclusion {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-top: 2rem;
  font-style: italic;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.12),
    rgba(139, 92, 246, 0.12)
  );
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  letter-spacing: -0.1px;
}

.purpose-section {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.06),
    rgba(139, 92, 246, 0.05)
  );
  border: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
}

.purpose-section::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(rgba(99, 102, 241, 0.12), transparent 65%);
  filter: blur(2px);
}

.purpose-highlight {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  margin: 1.5rem 0 2rem;
  position: relative;
}

.purpose-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.08),
    rgba(139, 92, 246, 0.04)
  );
  opacity: 0.6;
  pointer-events: none;
}

.purpose-highlight p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-dark);
  line-height: 1.75;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.reason-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.4rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reason-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(139, 92, 246, 0.02)
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.reason-card:hover::after {
  opacity: 1;
}

.reason-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.reason-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
  margin-bottom: 0.75rem;
}

.note-box {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.18);
  color: var(--primary-dark);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.conclusion-section {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.08),
    rgba(79, 70, 229, 0.05)
  );
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.conclusion-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-white);
  color: var(--primary-dark);
  border: 1px solid rgba(99, 102, 241, 0.22);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.conclusion-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 1rem 0 1.5rem;
  max-width: 760px;
}

.conclusion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.conclusion-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.conclusion-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.conclusion-card p {
  font-size: 1rem;
  color: var(--text-light);
}

.conclusion-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.12),
    rgba(139, 92, 246, 0.1)
  );
  font-size: 1.25rem;
}

.conclusion-note {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.08);
  color: var(--primary-dark);
  font-weight: 600;
  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow: var(--shadow-sm);
}

/* Takeaways Grid Styles */
.takeaways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.takeaway-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.takeaway-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.takeaway-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.12),
    rgba(139, 92, 246, 0.1)
  );
  color: var(--primary-color);
}

.takeaway-icon svg {
  width: 22px;
  height: 22px;
}

.takeaway-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.takeaway-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.conclusion-cta {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.08)
  );
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.15);
  text-align: center;
}

.conclusion-cta p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin: 0;
}

@media (max-width: 768px) {
  .takeaways-grid {
    grid-template-columns: 1fr;
  }

  .takeaway-card {
    padding: 1rem;
  }

  .takeaway-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .takeaway-icon svg {
    width: 20px;
    height: 20px;
  }
}

.applicant-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.applicant-list li {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.applicant-list li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1.4;
}

.applicant-list li strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Table of Contents */
.toc-section {
  background: #ffffff;
  border: none;
  position: relative;
  overflow: hidden;
  padding: 1.25rem 2rem !important;
  border-radius: 16px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  max-width: 850px;
  margin: 0 auto 3rem auto;
}

.toc-toggle {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  transition: all 0.3s ease;
}

.toc-toggle:hover {
  opacity: 0.8;
}

.toc-toggle h2 {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.toc-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.toc-toggle[aria-expanded="true"] .toc-icon {
  transform: rotate(180deg);
}

.toc-nav {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease,
    margin-top 0.3s ease;
}

.toc-nav[aria-hidden="false"] {
  max-height: 2000px;
  opacity: 1;
  margin-top: 0.875rem;
}

.toc-list {
  list-style: none;
  counter-reset: toc-counter;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.375rem;
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toc-list li {
  counter-increment: toc-counter;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0;
  animation: slideIn 0.3s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.03s);
  opacity: 0;
}

.toc-nav[aria-hidden="false"] .toc-list li {
  opacity: 1;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toc-list li::before {
  content: counter(toc-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.875rem;
  line-height: 1.5;
}

.toc-list a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.5;
  display: block;
  padding: 0.375rem 0.625rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  position: relative;
}

.toc-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 8px 0 0 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.toc-list a:hover {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.08),
    rgba(139, 92, 246, 0.08)
  );
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.12);
}

.toc-list a:hover::before {
  opacity: 1;
}

.toc-list a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.toc-list a:active {
  transform: translateX(4px) scale(0.98);
}

@media (max-width: 768px) {
  .toc-section {
    padding: 1rem 1.25rem !important;
  }

  .toc-list {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .toc-list li {
    padding-left: 1.5rem;
  }

  .toc-toggle h2 {
    font-size: 1.25rem;
  }

  .toc-icon {
    width: 18px;
    height: 18px;
  }

  .toc-nav[aria-hidden="false"] {
    margin-top: 0.75rem;
  }

  .toc-list a {
    font-size: 0.8125rem;
    padding: 0.3125rem 0.5rem;
  }
}

.subsection {
  margin-bottom: 3rem;
}

.subsection:last-child {
  margin-bottom: 0;
}

.subsection h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.subsection h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  line-height: 1.4;
}

.subsection p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.subsection-content {
  margin-top: 1rem;
}

.subsection-content h4 {
  margin-top: 0;
}

.subsection ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.subsection li {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.subsection li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1.4;
}

.subsection li strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Main Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.logo-section:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.logo-section:hover .logo-icon {
  transform: rotate(5deg) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.header-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: width 0.3s ease;
}

.nav-link.nav-link-active {
  color: var(--primary-color);
  font-weight: 700;
  text-shadow: 0 0 1px rgba(99, 102, 241, 0.2);
}

.nav-link.nav-link-active::after {
  width: 100%;
  height: 3px;
  box-shadow: 0 1px 4px rgba(99, 102, 241, 0.3);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.header-cta:active {
  transform: translateY(0);
}

.header-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.header-cta:hover svg {
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: var(--bg-light);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Footer */
.main-footer {
  background: linear-gradient(135deg, #111827 0%, #030712 100%);
  color: #9ca3af;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.3px;
}

.footer-about {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.footer-logo-text h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.125rem;
  letter-spacing: -1px;
  line-height: 1;
}

.footer-logo-text p:first-of-type {
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.footer-logo-text .footer-tagline {
  font-size: 0.9375rem;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
}

.footer-logo-text .highlight-text {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  font-size: 0.9375rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-content p {
  font-size: 0.875rem;
  color: #9ca3af;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: white;
}

.footer-legal span {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Responsive Header */
@media (max-width: 968px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-color);
    gap: 0.5rem;
  }

  .header-nav.mobile-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-content {
    gap: 1rem;
    position: relative;
  }

  .logo-title {
    font-size: 1.125rem;
  }

  .logo-subtitle {
    font-size: 0.6875rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-icon svg {
    width: 20px;
    height: 20px;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background 0.2s ease;
  }

  .nav-link:hover {
    background: var(--bg-light);
  }
}

@media (max-width: 640px) {
  .header-content {
    padding: 0.75rem 0;
  }

  .logo-section {
    gap: 0.5rem;
  }
}

/* Responsive Footer */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 3rem 0 2rem;
  }

  .footer-about {
    max-width: 100%;
    grid-column: 1 / -1;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 1.5rem;
  }

  .footer-about {
    grid-column: 1;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

header {
  margin-bottom: 3rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white);
  letter-spacing: -0.5px;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-white);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: var(--shadow-xl);
  margin-bottom: 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.headline {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.highlight {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subheadline {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.check-icon {
  width: 24px;
  height: 24px;
  color: var(--success-color);
  flex-shrink: 0;
}

.form-section {
  display: flex;
  justify-content: center;
}

.form-container {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
}

.form-container h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: var(--bg-white);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-md);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.submit-btn:active {
  transform: translateY(0);
}

.arrow-icon {
  width: 20px;
  height: 20px;
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
}

.success-message {
  text-align: center;
  padding: 2rem 1rem;
}

.success-message.hidden {
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  color: var(--success-color);
  margin: 0 auto 1rem;
}

.success-message h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.success-message p {
  color: var(--text-light);
}

.whats-inside {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: var(--shadow-xl);
  margin-bottom: 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.content-item {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.content-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
  background: var(--bg-white);
}

.content-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.content-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.content-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.faq-section {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: var(--shadow-xl);
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--bg-light);
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-item.active {
  border-color: var(--primary-color);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: inherit;
  transition: all 0.2s ease;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.social-proof {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.testimonial {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.stars {
  font-size: 1.5rem;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Legacy footer - keeping for compatibility */
footer {
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
  margin-top: 2rem;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
  background: var(--bg-white);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.benefit-card:hover::before {
  transform: scaleY(1);
}

.benefit-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.2;
}

.benefit-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.process-step:hover {
  background: var(--bg-white);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.process-step .step-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

/* Ensure visibility in How to Apply section */
.how-to-apply-section .step-number {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.process-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
  margin-left: 23px;
  opacity: 0.3;
}

.process-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
}

.process-note p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-list li {
  font-size: 1rem;
  color: var(--text-light);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.step-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .intro-hero {
    padding: 1.25rem 0;
  }

  .intro-title {
    font-size: 2rem;
  }

  .hero-image-section {
    margin: 1.5rem 0 2rem 0;
  }

  .lead-paragraph {
    font-size: 1.0625rem;
  }

  .main-paragraph {
    font-size: 1rem;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }

  .headline {
    font-size: 2.25rem;
  }

  .form-container {
    max-width: 100%;
  }

  .whats-inside {
    padding: 3rem 2rem;
  }

  .content-section {
    padding: 3rem 2rem;
  }

  .section-content > h2 {
    font-size: 2rem;
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .intro-hero {
    padding: 1rem 0;
    margin-top: 0.5rem;
  }

  .intro-content {
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-image-section {
    margin: 1rem 0 1.5rem 0;
  }

  .hero-image-container {
    padding: 0 1rem;
  }

  .intro-title {
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }

  .lead-paragraph {
    font-size: 1rem;
    line-height: 1.7;
  }

  .main-paragraph {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .hero-section {
    padding: 2rem 1.5rem;
  }

  .headline {
    font-size: 1.875rem;
  }

  .subheadline {
    font-size: 1.125rem;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }

  .form-container h2 {
    font-size: 1.5rem;
  }

  .whats-inside {
    padding: 2.5rem 1.5rem;
  }

  .content-section {
    padding: 2.5rem 1.5rem;
  }

  .section-content > h2 {
    font-size: 1.75rem;
  }

  .subsection h3 {
    font-size: 1.5rem;
  }

  .subsection h4 {
    font-size: 1.125rem;
  }

  .section-intro {
    font-size: 1rem;
  }

  .subsection p,
  .subsection li {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-section {
    padding: 2.5rem 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.25rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .process-step {
    padding: 1.25rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.5rem 1.25rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-number {
    font-size: 2.5rem;
  }

  .process-step {
    padding: 1rem;
    gap: 1rem;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .step-content h4 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.9375rem;
  }

  .process-connector {
    margin-left: 17px;
    height: 20px;
  }

  .process-note {
    padding: 1.25rem;
  }
}

/* Comparison Table */
.comparison-table-wrapper {
  margin: 2rem 0;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 1.5rem 0;
}

.comparison-table thead {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.comparison-table th {
  padding: 1.25rem 1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.comparison-table th:first-child {
  width: 20%;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
  width: 40%;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
  background-color: var(--bg-light);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 1.25rem 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  vertical-align: top;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.comparison-table td strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Tip Box */
.tip-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
}

.tip-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.tip-box strong {
  color: var(--primary-color);
  font-weight: 600;
}

.warning-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1),
    rgba(239, 68, 68, 0.1)
  );
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.warning-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.warning-box strong {
  color: #f59e0b;
  font-weight: 600;
}

/* Responsive Table */
@media (max-width: 968px) {
  .comparison-table {
    font-size: 0.9375rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.75rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 640px) {
  .comparison-table-wrapper {
    margin: 1.5rem -1.5rem;
    padding: 0 1.5rem;
  }

  .comparison-table {
    font-size: 0.875rem;
    min-width: 600px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.875rem 0.625rem;
    font-size: 0.875rem;
  }

  .comparison-table th:first-child {
    width: 25%;
  }

  .comparison-table th:nth-child(2),
  .comparison-table th:nth-child(3) {
    width: 37.5%;
  }

  .tip-box {
    padding: 1rem 1.25rem;
  }

  .tip-box p {
    font-size: 0.9375rem;
  }
}

/* Infographic Summary */
.infographic-summary {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 16px;
  border: 2px solid var(--border-color);
}

.infographic-item {
  margin-bottom: 1.5rem;
}

.infographic-item:last-child {
  margin-bottom: 0;
}

.infographic-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.infographic-item p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.flow-step {
  padding: 0.625rem 1rem;
  background: var(--bg-white);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.flow-step:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.flow-arrow {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0.25rem;
}

@media (max-width: 640px) {
  .infographic-summary {
    padding: 1.5rem;
  }

  .flow-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin: 0;
    align-self: center;
  }

  .flow-step {
    width: 100%;
    text-align: center;
  }
}

/* Section 10: HIT Status - Unique Styling */
.hit-status-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.hit-status-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hit-hero-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.hit-badge {
  display: none;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hit-status-section .hit-hero-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hit-intro-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* HIT Meaning Card */
.hit-meaning-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.hit-meaning-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.hit-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.hit-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.hit-icon {
  width: 28px;
  height: 28px;
  color: white;
}

.hit-card-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.hit-card-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hit-definition {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-dark);
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.hit-definition strong {
  color: var(--primary-color);
  font-weight: 600;
}

.hit-simple-terms h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hit-terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.hit-term-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.hit-term-item:hover {
  border-color: var(--primary-color);
  background: var(--bg-white);
  transform: translateX(4px);
}

.hit-term-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.hit-term-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.hit-important-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  border-radius: 12px;
  border: 2px solid var(--success-color);
}

.hit-note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hit-important-note p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.hit-important-note strong {
  color: var(--success-color);
  font-weight: 600;
}

/* HIT Reasons Section */
.hit-reasons-section {
  margin-bottom: 3rem;
}

.hit-reasons-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hit-reasons-intro {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hit-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hit-reason-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hit-reason-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.hit-reason-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.hit-reason-card:hover::before {
  transform: scaleX(1);
}

.hit-reason-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.hit-reason-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.hit-reason-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.hit-note-box {
  padding: 1.25rem 1.5rem;
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  margin-top: 1.5rem;
}

.hit-note-box p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.hit-note-box strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* HIT Process Timeline */
.hit-process-section {
  margin-bottom: 3rem;
}

.hit-process-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hit-process-intro {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hit-process-timeline {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.hit-process-timeline::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.hit-timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2.5rem;
}

.hit-timeline-item:last-child {
  margin-bottom: 0;
}

.hit-timeline-marker {
  position: absolute;
  left: -0.5rem;
  top: 0.5rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.hit-timeline-content {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.hit-timeline-content:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.hit-timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.hit-timeline-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.hit-action-box {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--primary-color);
}

.hit-action-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hit-action-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hit-action-list li {
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.hit-action-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.125rem;
}

/* HIT Timing Section */
.hit-timing-section {
  margin-bottom: 3rem;
}

.hit-timing-card {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
}

.hit-timing-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.hit-clock-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.hit-timing-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.hit-timing-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hit-timing-main {
  font-size: 1.125rem;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
}

.hit-timing-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.hit-timing-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.hit-timing-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hit-timing-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-md);
}

.hit-timing-item p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.hit-timing-note {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.hit-tip-box-special {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.hit-tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hit-tip-box-special p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.hit-tip-box-special strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* HIT Next Steps Section */
.hit-next-steps-section {
  margin-bottom: 0;
}

.hit-next-steps-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hit-next-steps-intro {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hit-steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.hit-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hit-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.hit-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.hit-step-card:hover::before {
  transform: scaleY(1);
}

.hit-step-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.hit-step-content {
  flex: 1;
}

.hit-step-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.hit-step-content p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for HIT Section */
@media (max-width: 968px) {
  .hit-status-section .hit-hero-header h2 {
    font-size: 2rem;
  }

  .hit-terms-grid {
    grid-template-columns: 1fr;
  }

  .hit-reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hit-timing-details {
    grid-template-columns: 1fr;
  }

  .hit-steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hit-status-section {
    padding: 2.5rem 1.5rem;
  }

  .hit-status-section .hit-hero-header h2 {
    font-size: 1.75rem;
  }

  .hit-intro-text {
    font-size: 1rem;
  }

  .hit-meaning-card {
    padding: 1.5rem;
  }

  .hit-card-header {
    flex-direction: column;
    text-align: center;
  }

  .hit-icon-wrapper {
    margin: 0 auto;
  }

  .hit-terms-grid {
    grid-template-columns: 1fr;
  }

  .hit-reasons-grid {
    grid-template-columns: 1fr;
  }

  .hit-process-timeline {
    padding-left: 1.5rem;
  }

  .hit-timeline-item {
    padding-left: 2rem;
  }

  .hit-timing-card {
    padding: 1.5rem;
  }

  .hit-timing-header {
    flex-direction: column;
    text-align: center;
  }

  .hit-timing-details {
    grid-template-columns: 1fr;
  }

  .hit-steps-container {
    grid-template-columns: 1fr;
  }

  .hit-step-card {
    padding: 1.25rem;
  }

  .hit-step-number {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
}

/* Section 11: Processing Time & Release - Unique Styling */
.processing-time-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.processing-time-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.processing-hero-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.processing-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.processing-time-section .processing-hero-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.processing-intro-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Processing Comparison Cards */
.processing-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.processing-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.processing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.processing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.processing-card:hover::before {
  transform: scaleX(1);
}

.no-hit-card:hover {
  border-color: var(--success-color);
}

.no-hit-card::before {
  background: linear-gradient(90deg, var(--success-color), #34d399);
}

.hit-card:hover {
  border-color: #f59e0b;
}

.hit-card::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.processing-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.processing-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.fast-icon {
  background: linear-gradient(135deg, var(--success-color), #34d399);
}

.slow-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.processing-icon {
  width: 28px;
  height: 28px;
  color: white;
}

.processing-card-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.processing-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.processing-description {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
}

.processing-description strong {
  color: var(--text-dark);
  font-weight: 600;
}

.processing-time-display {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.time-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 200px;
}

.fast-time {
  background: linear-gradient(135deg, var(--success-color), #34d399);
  color: white;
}

.slow-time {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
}

.time-value {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.time-label {
  font-size: 0.9375rem;
  opacity: 0.9;
  font-weight: 500;
}

.processing-details {
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.processing-details p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.processing-tip-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  border-radius: 12px;
  border-left: 4px solid var(--success-color);
}

.tip-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.processing-tip-inline p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.processing-tip-inline strong {
  color: var(--success-color);
  font-weight: 600;
}

.processing-note-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1),
    rgba(251, 191, 36, 0.1)
  );
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.note-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.processing-note-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.processing-note-box strong {
  color: #f59e0b;
  font-weight: 600;
}

/* Same-Day Release Section */
.processing-subsection {
  margin-bottom: 3rem;
}

.same-day-section {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid var(--border-color);
}

.subsection-header-with-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.subsection-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.delay-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.processing-subsection h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.subsection-intro {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.same-day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.same-day-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-white);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.same-day-item:hover {
  border-color: var(--success-color);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.same-day-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success-color), #34d399);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.same-day-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.same-day-note {
  padding: 1.25rem;
  background: var(--bg-white);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.same-day-note p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Delays Section */
.delays-section {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.05),
    rgba(251, 191, 36, 0.05)
  );
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid var(--border-color);
}

.delays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.delay-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.delay-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.delay-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #f59e0b;
}

.delay-card:hover::before {
  transform: scaleX(1);
}

.delay-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.delay-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.delay-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Avoid Delays Box */
.avoid-delays-box {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--success-color);
  box-shadow: var(--shadow-md);
}

.avoid-delays-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.avoid-icon {
  font-size: 1.75rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--success-color), #34d399);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.avoid-delays-header h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.avoid-delays-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.avoid-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.avoid-item:hover {
  background: var(--bg-white);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.avoid-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success-color), #34d399);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.avoid-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Responsive Design for Processing Time Section */
@media (max-width: 968px) {
  .processing-time-section .processing-hero-header h2 {
    font-size: 2rem;
  }

  .processing-comparison {
    grid-template-columns: 1fr;
  }

  .same-day-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .delays-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .avoid-delays-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .processing-time-section {
    padding: 2.5rem 1.5rem;
  }

  .processing-time-section .processing-hero-header h2 {
    font-size: 1.75rem;
  }

  .processing-intro-text {
    font-size: 1rem;
  }

  .processing-card {
    padding: 1.5rem;
  }

  .processing-card-header {
    flex-direction: column;
    text-align: center;
  }

  .processing-icon-wrapper {
    margin: 0 auto;
  }

  .time-badge {
    padding: 1.25rem 2rem;
    min-width: 180px;
  }

  .time-value {
    font-size: 1.5rem;
  }

  .same-day-section,
  .delays-section {
    padding: 1.5rem;
  }

  .same-day-grid {
    grid-template-columns: 1fr;
  }

  .delays-grid {
    grid-template-columns: 1fr;
  }

  .avoid-delays-box {
    padding: 1.5rem;
  }

  .avoid-delays-header {
    flex-direction: column;
    text-align: center;
  }
}

/* Section 12: Validity of National Police Clearance - Unique Styling */
.validity-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.validity-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.validity-hero-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.validity-section .validity-hero-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.validity-intro-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Validity Period Card */
.validity-period-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.validity-period-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.validity-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.validity-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.validity-icon {
  width: 28px;
  height: 28px;
  color: white;
}

.validity-card-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.validity-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.validity-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0;
}

.validity-badge-display {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.validity-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 3rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 280px;
}

.validity-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.validity-label {
  font-size: 1rem;
  opacity: 0.95;
  font-weight: 500;
}

.validity-note {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.validity-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.validity-tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.validity-tip-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.validity-tip-box strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Validity Grid and Cards */
.validity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.validity-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.validity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.validity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.validity-card:hover::before {
  transform: scaleX(1);
}

.validity-card.period-card::before {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(1);
}

.validity-card.expired-card::before {
  background: linear-gradient(90deg, #ef4444, #dc2626);
  transform: scaleX(1);
}

.validity-card.checking-card::before {
  background: linear-gradient(90deg, #10b981, #059669);
  transform: scaleX(1);
}

.validity-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.validity-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  box-shadow: var(--shadow-md);
}

.validity-icon svg {
  width: 24px;
  height: 24px;
}

.validity-icon.warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.validity-icon.verify {
  background: linear-gradient(135deg, #10b981, #059669);
}

.validity-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.validity-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.validity-duration {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.05)
  );
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 16px;
  text-align: center;
}

.duration-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.duration-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.validity-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}

.expired-notice {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.expired-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}

.expired-uses {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.expired-use-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: 8px;
}

.expired-use-item svg {
  width: 20px;
  height: 20px;
  color: #ef4444;
  flex-shrink: 0;
}

.expired-use-item span {
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 500;
}

.verification-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.verification-method-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.verification-method-item:hover {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.05);
  transform: translateX(4px);
}

.verification-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  box-shadow: var(--shadow-sm);
}

.verification-icon svg {
  width: 20px;
  height: 20px;
}

.verification-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.verification-content p {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.validity-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin-top: 2rem;
}

.validity-tip-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.validity-tip-icon svg {
  width: 100%;
  height: 100%;
}

/* Responsive styles for validity section */
@media (max-width: 1024px) {
  .validity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .validity-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .validity-card {
    padding: 2rem 1.5rem;
  }

  .validity-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .validity-icon {
    width: 40px;
    height: 40px;
  }

  .validity-icon svg {
    width: 20px;
    height: 20px;
  }

  .validity-header h3 {
    font-size: 1.375rem;
  }

  .duration-value {
    font-size: 1.75rem;
  }

  .validity-tip-box {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .verification-method-item {
    flex-direction: column;
    text-align: center;
  }

  .verification-content {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .validity-card {
    padding: 1.5rem;
  }

  .duration-value {
    font-size: 1.5rem;
  }

  .validity-description {
    font-size: 0.9375rem;
  }
}

/* Renewal of Police Clearance Certificate Section */
.renewal-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.renewal-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.renewal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.renewal-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.renewal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.renewal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.renewal-card:hover::before {
  transform: scaleX(1);
}

.renewal-card.when-needed-card::before {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(1);
}

.renewal-card.online-renewal-card::before {
  background: linear-gradient(90deg, #10b981, #059669);
  transform: scaleX(1);
}

.renewal-card.offline-renewal-card::before {
  background: linear-gradient(90deg, #f59e0b, #d97706);
  transform: scaleX(1);
}

.renewal-card.fees-card::before {
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transform: scaleX(1);
}

.renewal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.renewal-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  box-shadow: var(--shadow-md);
}

.renewal-icon svg {
  width: 24px;
  height: 24px;
}

.renewal-icon.online {
  background: linear-gradient(135deg, #10b981, #059669);
}

.renewal-icon.offline {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.renewal-icon.fees {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.renewal-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.renewal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.renewal-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}

.renewal-reasons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.renewal-reason-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.renewal-reason-item:hover {
  background: rgba(99, 102, 241, 0.05);
  transform: translateX(4px);
}

.renewal-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success-color), #34d399);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.renewal-check svg {
  width: 14px;
  height: 14px;
}

.renewal-reason-item span {
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 500;
}

.renewal-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.renewal-step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.renewal-step-item:hover {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.05);
  transform: translateX(4px);
}

.renewal-step-number {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.renewal-step-item span {
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 500;
}

.renewal-requirements {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.renewal-requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.renewal-requirement-item:hover {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.05);
  transform: translateX(4px);
}

.renewal-requirement-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  box-shadow: var(--shadow-sm);
}

.renewal-requirement-icon svg {
  width: 20px;
  height: 20px;
}

.renewal-requirement-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.renewal-requirement-content p {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.renewal-fees-display {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.renewal-fee-amount {
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.05)
  );
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.renewal-fee-amount:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.renewal-fee-amount.free {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(5, 150, 105, 0.05)
  );
  border-color: rgba(16, 185, 129, 0.3);
}

.renewal-fee-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
}

.renewal-fee-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.renewal-fee-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.renewal-fee-note {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.renewal-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin-top: 2rem;
}

.renewal-tip-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.renewal-tip-icon svg {
  width: 100%;
  height: 100%;
}

.renewal-tip-box p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.renewal-tip-box strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Renewal Reasons Grid Section */
.renewal-reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

.renewal-reason-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.2s ease;
}

.renewal-reason-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-color);
}

.renewal-reason-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.renewal-reason-number {
  color: var(--primary-color);
  font-weight: 700;
  margin-right: 0.5rem;
}

.renewal-reason-card p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.renewal-reason-card p:last-of-type {
  margin-bottom: 0;
}

.renewal-reason-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.renewal-reason-list li {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  padding-left: 2rem;
  position: relative;
}

.renewal-reason-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.125rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Problem Solution Item Styles */
.problem-solution-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.2s ease;
  margin-bottom: 1.5rem;
}

.problem-solution-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-color);
}

.problem-solution-item h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.problem-label {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(239, 68, 68, 0.05);
  border-left: 3px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
}

.problem-label strong {
  color: rgba(239, 68, 68, 0.9);
  font-weight: 600;
}

.solution-label {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 1rem 0 0.75rem 0;
  font-weight: 600;
}

.solution-label strong {
  color: var(--primary-color);
}

/* Key Reminder Box */
.key-reminder-box {
  padding: 1.5rem;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin-top: 2rem;
}

.key-reminder-box p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0;
}

.key-reminder-box strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Renewal Method Comparison Section */
.renewal-method-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 3rem 0;
}

.renewal-method-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.renewal-method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.renewal-method-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.renewal-method-card:hover::before {
  transform: scaleX(1);
}

.online-method {
  border-color: rgba(99, 102, 241, 0.3);
}

.online-method::before {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.online-method:hover {
  border-color: var(--primary-color);
}

.walk-in-method {
  border-color: rgba(107, 114, 128, 0.3);
}

.walk-in-method::before {
  background: linear-gradient(90deg, #6b7280, #9ca3af);
}

.walk-in-method:hover {
  border-color: #6b7280;
}

.method-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.method-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.method-title-wrapper h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.method-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.method-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.method-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.method-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.method-section-title svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.pros-title {
  color: var(--success-color);
}

.pros-title svg {
  color: var(--success-color);
}

.cons-title {
  color: #f59e0b;
}

.cons-title svg {
  color: #f59e0b;
}

.best-for-title {
  color: var(--primary-color);
}

.best-for-title svg {
  color: var(--primary-color);
}

.method-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.method-list li {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  padding-left: 2rem;
  position: relative;
}

.pros-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.125rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(16, 185, 129, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cons-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
  color: #f59e0b;
  font-weight: 700;
  font-size: 1.5rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1),
    rgba(245, 158, 11, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.best-for-section {
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.best-for-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0;
}

.best-for-text + .best-for-text {
  margin-top: 0.75rem;
}

/* Responsive styles for renewal method comparison */
@media (max-width: 968px) {
  .renewal-method-comparison {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .renewal-method-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .renewal-method-comparison {
    gap: 1.5rem;
  }

  .method-title-wrapper h3 {
    font-size: 1.5rem;
  }

  .method-content {
    gap: 1.5rem;
  }

  .method-section {
    gap: 0.75rem;
  }

  .best-for-section {
    padding: 1.25rem;
  }
}

@media (max-width: 640px) {
  .renewal-method-card {
    padding: 1.5rem;
  }

  .method-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .method-title-wrapper h3 {
    font-size: 1.375rem;
  }

  .method-list li {
    font-size: 1rem;
    padding-left: 1.75rem;
  }

  .method-section-title {
    font-size: 1rem;
  }
}

/* Responsive styles for renewal section */
@media (max-width: 1024px) {
  .renewal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .renewal-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .renewal-card {
    padding: 2rem 1.5rem;
  }

  .renewal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .renewal-icon {
    width: 40px;
    height: 40px;
  }

  .renewal-icon svg {
    width: 20px;
    height: 20px;
  }

  .renewal-header h3 {
    font-size: 1.375rem;
  }

  .renewal-fee-value {
    font-size: 1.75rem;
  }

  .renewal-tip-box {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .renewal-requirement-item {
    flex-direction: column;
    text-align: center;
  }

  .renewal-requirement-content {
    text-align: center;
  }

  .renewal-reason-card {
    padding: 1.5rem;
  }

  .renewal-reason-card h3 {
    font-size: 1.25rem;
  }

  .key-reminder-box {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .renewal-card {
    padding: 1.5rem;
  }

  .renewal-fee-value {
    font-size: 1.5rem;
  }

  .renewal-description {
    font-size: 0.9375rem;
  }
}

/* Common Problems & Solutions Section */
.problems-solutions-section {
  background: var(--bg-white);
}

.problems-table-wrapper {
  margin: 2rem 0;
  overflow-x: auto;
}

.problems-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 1.5rem 0;
}

.problems-table thead {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.problems-table th {
  padding: 1.25rem 1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.problems-table th:first-child {
  width: 30%;
}

.problems-table th:nth-child(2) {
  width: 70%;
}

.problems-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s ease;
}

.problems-table tbody tr:hover {
  background-color: var(--bg-light);
}

.problems-table tbody tr:last-child {
  border-bottom: none;
}

.problems-table td {
  padding: 1.25rem 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  vertical-align: top;
}

.problems-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.problems-table td strong {
  color: var(--text-dark);
  font-weight: 600;
}

.problems-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin-top: 2rem;
}

.problems-tip-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.problems-tip-icon svg {
  width: 20px;
  height: 20px;
}

.problems-tip-box p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.problems-tip-box strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive styles for problems-solutions section */
@media (max-width: 968px) {
  .problems-table {
    font-size: 0.9375rem;
  }

  .problems-table th,
  .problems-table td {
    padding: 1rem 0.75rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 640px) {
  .problems-table-wrapper {
    margin: 1.5rem -1.5rem;
    padding: 0 1.5rem;
  }

  .problems-table {
    font-size: 0.875rem;
    min-width: 500px;
  }

  .problems-table th,
  .problems-table td {
    padding: 0.875rem 0.625rem;
    font-size: 0.875rem;
  }

  .problems-table th:first-child {
    width: 35%;
  }

  .problems-table th:nth-child(2) {
    width: 65%;
  }

  .problems-tip-box {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
}

/* Verification & Authenticity Section */
.verification-authenticity-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.verification-authenticity-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.verification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.verification-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.verification-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.verification-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.verification-card:hover::before {
  transform: scaleX(1);
}

.verification-card.how-verified-card::before {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(1);
}

.verification-card.avoiding-fake-card::before {
  background: linear-gradient(90deg, #ef4444, #dc2626);
  transform: scaleX(1);
}

.verification-card.npcs-system-card::before {
  background: linear-gradient(90deg, #10b981, #059669);
  transform: scaleX(1);
}

.verification-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.verification-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  box-shadow: var(--shadow-md);
}

.verification-icon svg {
  width: 24px;
  height: 24px;
}

.verification-icon.warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.verification-icon.system {
  background: linear-gradient(135deg, #10b981, #059669);
}

.verification-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.verification-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.verification-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}

.verification-methods-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.verification-method-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.verification-method-badge:hover {
  background: rgba(99, 102, 241, 0.05);
  transform: translateX(4px);
}

.verification-method-badge svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.verification-method-badge span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.avoiding-fake-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.avoiding-fake-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.avoiding-fake-item:hover {
  background: rgba(99, 102, 241, 0.05);
  transform: translateX(4px);
}

.avoiding-fake-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success-color), #34d399);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  margin-top: 2px;
}

.avoiding-fake-check svg {
  width: 14px;
  height: 14px;
}

.avoiding-fake-x {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  margin-top: 2px;
}

.avoiding-fake-x svg {
  width: 14px;
  height: 14px;
}

.avoiding-fake-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.avoiding-fake-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.npcs-verification-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.npcs-method-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.npcs-method-item:hover {
  background: rgba(16, 185, 129, 0.05);
  transform: translateX(4px);
}

.npcs-method-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.npcs-method-icon svg {
  width: 20px;
  height: 20px;
}

.npcs-method-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.npcs-method-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.verification-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin-top: 2rem;
}

.verification-tip-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.verification-tip-icon svg {
  width: 20px;
  height: 20px;
}

.verification-tip-box p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.verification-tip-box strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive styles for verification-authenticity section */
@media (max-width: 968px) {
  .verification-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .verification-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .verification-card {
    padding: 1.5rem;
  }

  .verification-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .verification-header h3 {
    font-size: 1.25rem;
  }

  .verification-tip-box {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .npcs-verification-methods,
  .avoiding-fake-list {
    gap: 0.75rem;
  }
}

/* Expire Section */
.expire-section {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid var(--border-color);
  margin-bottom: 3rem;
}

.expire-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.expire-example-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--border-color);
  margin-top: 1.5rem;
}

.expire-example-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.expire-example-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.expire-example-item {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.expire-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.expire-date-badge.issued {
  background: linear-gradient(135deg, var(--success-color), #34d399);
  color: white;
}

.expire-date-badge.expired {
  background: linear-gradient(135deg, #ef4444, #f87171);
  color: white;
}

.expire-date-label {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.expire-date-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.expire-arrow {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
  flex-shrink: 0;
}

.expire-note {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
}

/* Expired Section */
.expired-section {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.05),
    rgba(248, 113, 113, 0.05)
  );
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid var(--border-color);
  margin-bottom: 3rem;
}

.warning-icon {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.expired-warning-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid #ef4444;
  box-shadow: var(--shadow-md);
  margin-top: 1.5rem;
}

.expired-warning-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.expired-warning-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ef4444, #f87171);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.expired-warning-header h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.expired-warning-text {
  font-size: 1.125rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.expired-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.expired-reason-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.expired-reason-item:hover {
  border-color: #ef4444;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

.expired-reason-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ef4444, #f87171);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.expired-reason-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.expired-note-box {
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid #ef4444;
  margin-bottom: 1.5rem;
}

.expired-note-box p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.expired-best-practice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  border-radius: 12px;
  border-left: 4px solid var(--success-color);
}

.best-practice-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.expired-best-practice p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.expired-best-practice strong {
  color: var(--success-color);
  font-weight: 600;
}

/* Check Validity Section */
.check-validity-section {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid var(--border-color);
  margin-bottom: 0;
}

.check-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.check-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.check-method-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.check-method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.check-method-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.check-method-card:hover::before {
  transform: scaleX(1);
}

.check-method-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.check-method-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.check-method-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.check-validity-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  text-align: center;
}

.check-validity-note p {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.check-validity-note strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive Design for Validity Section */
@media (max-width: 968px) {
  .validity-section .validity-hero-header h2 {
    font-size: 2rem;
  }

  .expire-example-grid {
    flex-direction: column;
  }

  .expire-arrow {
    transform: rotate(90deg);
  }

  .expired-reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .check-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .validity-section {
    padding: 2.5rem 1.5rem;
  }

  .validity-section .validity-hero-header h2 {
    font-size: 1.75rem;
  }

  .validity-intro-text {
    font-size: 1rem;
  }

  .validity-period-card {
    padding: 1.5rem;
  }

  .validity-card-header {
    flex-direction: column;
    text-align: center;
  }

  .validity-icon-wrapper {
    margin: 0 auto;
  }

  .validity-badge {
    padding: 1.5rem 2rem;
    min-width: 240px;
  }

  .validity-value {
    font-size: 1.75rem;
  }

  .expire-section,
  .expired-section,
  .check-validity-section {
    padding: 1.5rem;
  }

  .expire-example-item {
    min-width: 100%;
    max-width: 100%;
  }

  .expired-warning-card {
    padding: 1.5rem;
  }

  .expired-warning-header {
    flex-direction: column;
    text-align: center;
  }

  .expired-reasons-grid {
    grid-template-columns: 1fr;
  }

  .check-methods-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }
}

/* Section 14: Common Problems & Errors */
.problems-section {
  background: var(--bg-white);
}

.problems-hero-header {
  text-align: center;
  margin-bottom: 3rem;
}

.problems-hero-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.3px;
}

.problems-intro-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 750px;
  margin: 0 auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.problem-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.problem-card:hover::before {
  transform: scaleX(1);
}

.problem-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--border-color);
}

.problem-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 28px;
  height: 28px;
  color: white;
}

.website-icon {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.login-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.email-icon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.payment-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.appointment-icon {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.problem-card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
}

.problem-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problem-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
}

.problem-causes,
.problem-solutions {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--border-color);
}

.problem-causes {
  border-left-color: #f59e0b;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.05),
    rgba(251, 191, 36, 0.05)
  );
}

.problem-solutions {
  border-left-color: var(--success-color);
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05),
    rgba(52, 211, 153, 0.05)
  );
}

.problem-causes h4,
.problem-solutions h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.problem-causes h4::before {
  content: "⚠️";
  font-size: 1.25rem;
}

.problem-solutions h4::before {
  content: "✅";
  font-size: 1.25rem;
}

.problem-causes ul,
.problem-solutions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.problem-causes li,
.problem-solutions li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  padding-left: 1.5rem;
  position: relative;
}

.problem-causes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 700;
  font-size: 1.25rem;
}

.problem-solutions li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
}

.problem-tip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin-top: 0.5rem;
}

.problem-tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.problem-tip p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.problem-tip strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive Design for Problems Section */
@media (max-width: 768px) {
  .problems-hero-header h2 {
    font-size: 1.75rem;
  }

  .problems-intro-text {
    font-size: 1rem;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .problem-card {
    padding: 1.5rem;
  }

  .problem-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .problem-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .problem-icon {
    width: 24px;
    height: 24px;
  }

  .problem-card-header h3 {
    font-size: 1.25rem;
  }
}

/* Section: Police Clearance for First-Time Job Seekers - Unique Styling */
.first-time-job-seeker-section {
  background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.first-time-job-seeker-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    #fbbf24,
    var(--primary-color),
    var(--secondary-color),
    #fbbf24
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.first-time-hero-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.first-time-job-seeker-section .first-time-hero-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.first-time-intro-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Who Qualifies Section */
.first-time-qualify-section {
  margin-bottom: 3rem;
}

.first-time-subsection-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.first-time-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.warning-icon-bg {
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
}

.first-time-icon {
  width: 28px;
  height: 28px;
  color: white;
}

.first-time-subsection-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.first-time-subsection-intro {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.first-time-qualify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.first-time-qualify-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.first-time-qualify-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.first-time-qualify-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.first-time-qualify-card:hover::before {
  transform: scaleX(1);
}

.qualify-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.first-time-qualify-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.first-time-qualify-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.first-time-legal-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 12px;
  border: 2px solid var(--primary-color);
}

.legal-note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.first-time-legal-note p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.first-time-legal-note strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Required Documents Section */
.first-time-documents-section {
  margin-bottom: 3rem;
}

.first-time-documents-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.first-time-documents-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.documents-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.document-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.document-item:hover {
  border-color: var(--primary-color);
  background: var(--bg-white);
  transform: translateX(4px);
}

.document-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--success-color),
    var(--primary-color)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.document-content {
  flex: 1;
}

.document-content strong {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.document-content p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

.documents-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1),
    rgba(239, 68, 68, 0.1)
  );
  border-radius: 12px;
  border: 2px solid #f59e0b;
}

.warning-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.documents-warning-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.documents-warning-box strong {
  color: #f59e0b;
  font-weight: 600;
}

/* Is It Really Free Section */
.first-time-free-section {
  margin-bottom: 3rem;
}

.first-time-free-card {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--success-color);
  position: relative;
  overflow: hidden;
}

.first-time-free-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.free-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.free-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--success-color),
    var(--primary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.free-icon {
  width: 32px;
  height: 32px;
  color: white;
}

.free-badge {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.free-card-body {
  position: relative;
  z-index: 1;
}

.free-card-body h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.free-answer {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 12px;
  border-left: 4px solid var(--success-color);
}

.free-answer strong {
  color: var(--success-color);
  font-weight: 600;
}

.free-details {
  margin-bottom: 2rem;
}

.free-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.free-limitations-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.free-limitation-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-white);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.free-limitation-item:hover {
  border-color: var(--primary-color);
  transform: translateX(4px);
}

.limitation-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.free-limitation-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.free-limitation-item strong {
  color: var(--primary-color);
  font-weight: 600;
}

.free-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.free-tip-box .tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.free-tip-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.free-tip-box strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Important Limitations Section */
.first-time-limitations-section {
  margin-bottom: 0;
}

.first-time-limitations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.limitation-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.limitation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.limitation-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #f59e0b;
}

.limitation-card:hover::before {
  transform: scaleX(1);
}

.limitation-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.limitation-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.limitation-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.limitations-closing-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  border-radius: 12px;
  border: 2px solid #f59e0b;
}

.closing-note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.limitations-closing-note p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.limitations-closing-note strong {
  color: #f59e0b;
  font-weight: 600;
}

/* Responsive Design for First-Time Job Seeker Section */
@media (max-width: 768px) {
  .first-time-job-seeker-section .first-time-hero-header h2 {
    font-size: 1.75rem;
  }

  .first-time-intro-text {
    font-size: 1rem;
  }

  .first-time-subsection-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .first-time-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .first-time-icon {
    width: 24px;
    height: 24px;
  }

  .first-time-subsection-header h3 {
    font-size: 1.5rem;
  }

  .first-time-qualify-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .first-time-qualify-card {
    padding: 1.5rem;
  }

  .qualify-icon {
    font-size: 2.5rem;
  }

  .first-time-documents-card {
    padding: 1.5rem;
  }

  .document-item {
    padding: 1.25rem;
  }

  .first-time-free-card {
    padding: 1.5rem;
  }

  .free-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .free-badge {
    font-size: 1.25rem;
    padding: 0.5rem 1.5rem;
  }

  .free-answer {
    font-size: 1.125rem;
    padding: 1.25rem;
  }

  .first-time-limitations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .limitation-card {
    padding: 1.5rem;
  }
}

/* Section: Police Clearance Locations - Unique Styling */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.city-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.city-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.city-card:hover::before {
  transform: scaleX(1);
}

.city-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.city-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.city-icon {
  font-size: 1.75rem;
  display: block;
}

.city-card-header h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.city-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.city-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.city-card-body li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  padding-left: 1.5rem;
  position: relative;
}

.city-card-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.location-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.location-step {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.location-step:hover {
  background: var(--bg-white);
  border-color: var(--primary-color);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.location-step .step-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.location-step .step-content {
  flex: 1;
}

.location-step .step-content p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
}

/* Responsive Design for Locations Section */
@media (max-width: 968px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .city-card {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .city-card {
    padding: 1.25rem;
  }

  .city-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .city-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .city-icon {
    font-size: 1.5rem;
  }

  .city-card-header h4 {
    font-size: 1.25rem;
  }

  .location-step {
    padding: 1.25rem;
    gap: 1rem;
  }

  .location-step .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }

  .location-step .step-content p {
    font-size: 1rem;
  }
}

/* Section: Important Reminders & Tips - Unique Styling */
.reminders-tips-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.reminders-tips-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.reminders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.reminder-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reminder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.reminder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.reminder-card:hover::before {
  transform: scaleX(1);
}

.reminder-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}

.reminder-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.reminder-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.reminders-subsection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.reminder-subsection-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reminder-subsection-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.reminder-subsection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.reminder-subsection-card:hover::before {
  transform: scaleY(1);
}

.reminder-subsection-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.reminder-subsection-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.reminder-subsection-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.reminder-subsection-card > p {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.reminder-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reminder-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  padding-left: 2rem;
  position: relative;
}

.reminder-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.125rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.reminder-note {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  font-style: italic;
}

/* Responsive Design for Reminders & Tips Section */
@media (max-width: 968px) {
  .reminders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .reminders-subsection-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .reminders-tips-section {
    padding: 2.5rem 1.5rem;
  }

  .reminders-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .reminder-card {
    padding: 1.5rem;
  }

  .reminder-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .reminder-subsection-card {
    padding: 1.5rem;
  }

  .reminder-subsection-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .reminder-subsection-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .reminder-subsection-header h3 {
    font-size: 1.25rem;
  }
}

/* What Is a Police Clearance Certificate Section */
.what-is-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.what-is-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.key-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.key-point-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.key-point-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.key-point-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.key-point-card:hover::before {
  transform: scaleX(1);
}

.key-point-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.key-point-card:hover .key-point-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.key-point-icon svg {
  width: 32px;
  height: 32px;
}

.key-point-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.key-point-card p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.comparison-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 3rem 0 1.5rem;
  text-align: center;
  letter-spacing: -0.3px;
}

/* Responsive Design for What Is Section */
@media (max-width: 968px) {
  .key-points-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .key-point-card {
    padding: 2rem 1.25rem;
  }

  .comparison-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .key-points-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .what-is-section {
    padding: 2.5rem 1.5rem;
  }

  .key-points-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .key-point-card {
    padding: 2rem 1.5rem;
  }

  .key-point-icon {
    width: 56px;
    height: 56px;
  }

  .key-point-icon svg {
    width: 28px;
    height: 28px;
  }

  .key-point-card h3 {
    font-size: 1.25rem;
  }

  .key-point-card p {
    font-size: 1rem;
  }

  .comparison-title {
    font-size: 1.375rem;
    margin: 2rem 0 1rem;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.3),
    0 10px 10px -5px rgba(99, 102, 241, 0.2);
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

/* Responsive Design for Scroll to Top Button */
@media (max-width: 640px) {
  .scroll-to-top {
    width: 48px;
    height: 48px;
    bottom: 1.5rem;
    right: 1.5rem;
    border-radius: 12px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Requirements Section */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

@media (max-width: 1200px) {
  .requirements-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

.requirement-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 768px) {
  .requirement-card {
    padding: 1.75rem 1.5rem;
  }
}

.requirement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.requirement-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.requirement-card:hover::before {
  transform: scaleX(1);
}

.requirement-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .requirement-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}

.requirement-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  color: white;
}

.requirement-icon svg {
  width: 28px;
  height: 28px;
}

.additional-icon {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.application-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.requirement-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .requirement-header h3 {
    font-size: 1.35rem;
  }
}

.requirement-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.requirement-group h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.requirement-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.requirement-list li {
  font-size: 1rem;
  color: var(--text-light);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.requirement-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.125rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.requirement-item {
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.requirement-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.requirement-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.requirement-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.requirement-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.75rem 0;
}

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.requirements-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 1.5rem 0;
}

.requirements-column {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.requirements-column:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.requirements-column h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

.requirements-column ul {
  margin: 0;
  padding-left: 1.5rem;
}

.requirements-column li {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Responsive Design for Requirements Section */
@media (max-width: 968px) {
  .requirements-comparison {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .requirements-list {
    gap: 1rem;
  }

  .requirement-item {
    padding: 1rem;
  }

  .requirement-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .requirements-column {
    padding: 1.25rem;
  }

  .requirements-column h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}

.application-modes {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mode-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

@media (max-width: 480px) {
  .mode-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }
}

.mode-item:hover {
  border-color: var(--primary-color);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.mode-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  color: white;
}

.mode-icon.walk-in {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.mode-icon.online {
  background: linear-gradient(135deg, #10b981, #059669);
}

.mode-icon svg {
  width: 24px;
  height: 24px;
}

.mode-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
}

.mode-content p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.requirement-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .requirement-tip-box {
    padding: 1.25rem;
    gap: 0.75rem;
  }
  
  .requirement-tip-box p {
    font-size: 0.95rem;
  }
}

.requirement-tip-box .tip-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.requirement-tip-box .tip-icon svg {
  width: 20px;
  height: 20px;
}

.requirement-tip-box p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.requirement-tip-box strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive Design for Requirements Section */
@media (max-width: 968px) {
  .requirements-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .requirements-grid {
    gap: 1.5rem;
  }

  .requirement-card {
    padding: 2rem 1.5rem;
  }

  .requirement-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .requirement-icon {
    width: 48px;
    height: 48px;
  }

  .requirement-icon svg {
    width: 24px;
    height: 24px;
  }

  .requirement-header h3 {
    font-size: 1.5rem;
  }

  .mode-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .mode-icon {
    width: 40px;
    height: 40px;
  }

  .mode-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 640px) {
  .requirement-card {
    padding: 1.5rem;
  }

  .requirement-header h3 {
    font-size: 1.375rem;
  }

  .requirement-list li {
    font-size: 0.9375rem;
  }

  .requirement-item p,
  .mode-content p {
    font-size: 0.9375rem;
  }
}

/* First-Time Job Seekers Section */
.first-time-job-seekers-section {
  background: var(--bg-white);
}

.first-time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.first-time-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.first-time-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.first-time-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.first-time-card:hover::before {
  transform: scaleX(1);
}

.first-time-card.free-card::before {
  background: linear-gradient(90deg, #10b981, #059669);
  transform: scaleX(1);
}

.first-time-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.first-time-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  color: white;
}

.first-time-icon svg {
  width: 28px;
  height: 28px;
}

.first-time-icon.documents {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.first-time-icon.free {
  background: linear-gradient(135deg, #10b981, #059669);
}

.first-time-icon.limitations {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.first-time-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.3px;
}

.first-time-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.first-time-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.first-time-documents-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.first-time-documents-list li {
  font-size: 1rem;
  color: var(--text-light);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.first-time-documents-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.125rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.free-badge-large {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: #10b981;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(99, 102, 241, 0.1)
  );
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* Responsive Design for First-Time Job Seekers Section */
@media (max-width: 968px) {
  .first-time-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .first-time-card {
    padding: 2rem 1.5rem;
  }

  .first-time-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .first-time-header h3 {
    font-size: 1.5rem;
  }

  .free-badge-large {
    font-size: 1.75rem;
    padding: 0.5rem 1.25rem;
  }
}

/* Fees & Payment Section */
.fees-payment-section {
  background: var(--bg-white);
}

.fee-display-card {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  border-radius: 24px;
  padding: 3rem;
  margin: 3rem 0;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.fee-display-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.fee-display-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.fee-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.fee-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.fee-display-header h3 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.fee-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.fee-amount-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.fee-amount-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.fee-amount-card.regular {
  border-color: var(--border-color);
}

.fee-amount-card.free {
  border-color: var(--success-color);
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05),
    rgba(16, 185, 129, 0.02)
  );
  position: relative;
}

.fee-amount-card.free::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--success-color), #059669);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.3;
}

.fee-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fee-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.fee-value {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.fee-description {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.payment-options-section {
  margin: 3rem 0;
}

.payment-options-section h3 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.payment-method-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.payment-method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.payment-method-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.payment-method-card:hover::before {
  transform: scaleX(1);
}

.payment-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  box-shadow: var(--shadow-md);
}

.payment-icon.gcash {
  background: linear-gradient(135deg, #0070f3, #0051cc);
}

.payment-icon.banking {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.payment-icon.center {
  background: linear-gradient(135deg, var(--success-color), #059669);
}

.payment-icon svg {
  width: 40px;
  height: 40px;
}

.payment-method-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.75rem 0;
}

.payment-method-card p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.payment-confirmation-box {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05),
    rgba(99, 102, 241, 0.05)
  );
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.confirmation-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.confirmation-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--success-color),
    var(--primary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.confirmation-icon svg {
  width: 24px;
  height: 24px;
}

.confirmation-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.confirmation-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.confirmation-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-white);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.confirmation-item:hover {
  border-color: var(--success-color);
  transform: translateX(4px);
}

.confirmation-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success-color), #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.confirmation-check svg {
  width: 18px;
  height: 18px;
}

.confirmation-item span {
  font-size: 1.0625rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.fees-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.08),
    rgba(139, 92, 246, 0.08)
  );
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}

.fees-tip-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.fees-tip-icon svg {
  width: 20px;
  height: 20px;
}

.fees-tip-box p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.fees-tip-box strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Processing Time & Release of Certificate Section */
.processing-time-section {
  background: var(--bg-white);
}

.processing-time-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.processing-time-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.processing-time-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.processing-time-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.processing-time-card:hover::before {
  transform: scaleX(1);
}

.processing-time-card.no-hit::before {
  background: linear-gradient(90deg, var(--success-color), #059669);
  transform: scaleX(1);
}

.processing-time-card.no-hit:hover {
  border-color: var(--success-color);
}

.processing-time-card.hit-case::before {
  background: linear-gradient(90deg, #f59e0b, #d97706);
  transform: scaleX(1);
}

.processing-time-card.hit-case:hover {
  border-color: #f59e0b;
}

.processing-time-card.delays::before {
  background: linear-gradient(90deg, #ef4444, #dc2626);
  transform: scaleX(1);
}

.processing-time-card.delays:hover {
  border-color: #ef4444;
}

.processing-time-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.processing-time-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.processing-time-icon.warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.processing-time-icon.delay {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.processing-time-icon svg {
  width: 32px;
  height: 32px;
}

.processing-time-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.processing-time-badge.success {
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: white;
}

.processing-time-badge.warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.processing-time-badge.delay {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.processing-time-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.processing-time-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.processing-time-duration {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.processing-time-card.no-hit .processing-time-duration {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(16, 185, 129, 0.05)
  );
  border-color: rgba(16, 185, 129, 0.3);
}

.processing-time-card.hit-case .processing-time-duration {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1),
    rgba(245, 158, 11, 0.05)
  );
  border-color: rgba(245, 158, 11, 0.3);
}

.processing-time-card.delays .processing-time-duration {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1),
    rgba(239, 68, 68, 0.05)
  );
  border-color: rgba(239, 68, 68, 0.3);
}

.processing-time-duration svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.processing-time-card.no-hit .processing-time-duration svg {
  color: var(--success-color);
}

.processing-time-card.hit-case .processing-time-duration svg {
  color: #f59e0b;
}

.processing-time-card.delays .processing-time-duration svg {
  color: #ef4444;
}

.duration-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.processing-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.delay-reasons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.delay-reason-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--bg-light);
  border-radius: 10px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.delay-reason-item:hover {
  border-color: #ef4444;
  transform: translateX(4px);
  background: rgba(239, 68, 68, 0.05);
}

.delay-reason-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.delay-reason-icon svg {
  width: 16px;
  height: 16px;
}

.delay-reason-item span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
}

.processing-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.08),
    rgba(139, 92, 246, 0.08)
  );
  border-radius: 16px;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.processing-tip-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.processing-tip-icon svg {
  width: 24px;
  height: 24px;
}

.processing-tip-content {
  flex: 1;
}

.processing-tip-content p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.processing-tip-content strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive Design for Processing Time Section */
@media (max-width: 968px) {
  .processing-time-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .processing-time-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .processing-time-card {
    padding: 2rem 1.5rem;
  }

  .processing-time-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .processing-time-icon {
    width: 56px;
    height: 56px;
  }

  .processing-time-icon svg {
    width: 28px;
    height: 28px;
  }

  .processing-time-card h3 {
    font-size: 1.375rem;
  }

  .processing-tip-box {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .processing-tip-icon {
    width: 40px;
    height: 40px;
  }

  .processing-tip-icon svg {
    width: 20px;
    height: 20px;
  }

  .processing-tip-content p {
    font-size: 1.0625rem;
  }
}

@media (max-width: 640px) {
  .processing-time-card {
    padding: 1.5rem;
  }

  .duration-text {
    font-size: 1rem;
  }

  .processing-description {
    font-size: 0.9375rem;
  }

  .delay-reason-item {
    padding: 0.75rem;
  }

  .delay-reason-item span {
    font-size: 0.875rem;
  }

  .processing-tip-box {
    padding: 1.25rem;
  }
}

/* Responsive Design for Fees Section */
@media (max-width: 968px) {
  .fee-amounts {
    gap: 1.5rem;
  }

  .payment-methods-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .fee-display-card {
    padding: 2rem 1.5rem;
  }

  .fee-display-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .fee-icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .fee-icon-wrapper svg {
    width: 28px;
    height: 28px;
  }

  .fee-display-header h3 {
    font-size: 1.5rem;
  }

  .fee-amounts {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fee-amount-card {
    padding: 2rem 1.5rem;
  }

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

  .payment-methods-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .payment-confirmation-box {
    padding: 2rem 1.5rem;
  }

  .confirmation-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .confirmation-header h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .fee-display-card {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .fee-badge {
    font-size: 1.25rem;
    padding: 0.5rem 1.25rem;
  }

  .fee-value {
    font-size: 1.75rem;
  }

  .fee-label {
    font-size: 1rem;
  }

  .fee-description {
    font-size: 0.875rem;
  }

  .payment-method-card {
    padding: 2rem 1.5rem;
  }

  .payment-icon {
    width: 64px;
    height: 64px;
  }

  .payment-icon svg {
    width: 32px;
    height: 32px;
  }

  .payment-method-card h4 {
    font-size: 1.125rem;
  }

  .payment-method-card p {
    font-size: 0.9375rem;
  }

  .payment-confirmation-box {
    padding: 1.5rem;
  }

  .confirmation-item span {
    font-size: 1rem;
  }

  .fees-tip-box {
    padding: 1.25rem;
  }

  .fees-tip-box p {
    font-size: 1rem;
  }
}

/* Tips for a Smooth Application Section */
.smooth-application-tips-section {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.03),
    rgba(139, 92, 246, 0.03)
  );
  border-radius: 24px;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.smooth-application-tips-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    #10b981,
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.tips-hero-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.tips-header-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.tips-header-icon:hover {
  transform: rotate(0deg) scale(1.1);
}

.tips-header-icon svg {
  width: 40px;
  height: 40px;
}

.tips-hero-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  line-height: 1.3;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tips-intro-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.smooth-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.smooth-tip-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.smooth-tip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.smooth-tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border-color: var(--primary-color);
}

.smooth-tip-card:hover::before {
  transform: scaleX(1);
}

.tip-card-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.smooth-tip-card:hover .tip-card-decoration {
  opacity: 1;
}

.tip-card-content {
  position: relative;
  z-index: 1;
}

.tip-icon-wrapper {
  margin-bottom: 1.5rem;
}

.tip-icon-bg {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  transition: transform 0.3s ease;
}

.smooth-tip-card:hover .tip-icon-bg {
  transform: scale(1.1) rotate(5deg);
}

.tip-icon-bg.dress-code {
  background: linear-gradient(135deg, #10b981, #059669);
}

.tip-icon-bg.timing {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.tip-icon-bg.safety {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.tip-icon-bg svg {
  width: 32px;
  height: 32px;
}

.tip-content-body {
  position: relative;
}

.tip-number-badge {
  position: absolute;
  top: -10px;
  right: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.tip-content-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.tip-content-body > p {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tip-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.tip-detail-item:hover {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  transform: translateX(5px);
}

.tip-detail-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.tip-detail-item span {
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.tips-success-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1),
    rgba(5, 150, 105, 0.1)
  );
  border-radius: 20px;
  border: 2px solid #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
  position: relative;
  overflow: hidden;
}

.tips-success-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #10b981, #059669);
}

.success-box-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.success-box-icon svg {
  width: 28px;
  height: 28px;
}

.success-box-content {
  flex: 1;
}

.success-box-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.success-box-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
}

/* Responsive Design for Tips Section */
@media (max-width: 968px) {
  .smooth-tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .tips-hero-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .smooth-application-tips-section {
    padding: 3rem 0;
  }

  .tips-hero-header {
    margin-bottom: 3rem;
  }

  .tips-header-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
  }

  .tips-header-icon svg {
    width: 32px;
    height: 32px;
  }

  .tips-hero-header h2 {
    font-size: 1.75rem;
  }

  .tips-intro-text {
    font-size: 1rem;
  }

  .smooth-tips-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .smooth-tip-card {
    padding: 2rem 1.5rem;
  }

  .tip-content-body h3 {
    font-size: 1.25rem;
  }

  .tips-success-box {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }

  .success-box-icon {
    width: 48px;
    height: 48px;
  }

  .success-box-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* ===== PNP Payslip Step-by-Step Guide Styles ===== */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.step-card-warning {
  border-left: 4px solid #f59e0b;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.step-body {
  padding: 1.5rem;
}

.step-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.step-body p:last-child {
  margin-bottom: 0;
}

.step-note {
  font-style: italic;
  color: var(--text-light) !important;
  font-size: 0.95rem !important;
  margin-top: 1rem !important;
}

/* Credentials List */
.credentials-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 500;
  color: var(--primary-dark);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.credential-icon {
  font-size: 1.1rem;
}

/* Checklist Box */
.checklist-box {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1rem 0;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.checklist-box h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #059669;
  margin-bottom: 0.75rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding: 0.35rem 0;
  color: #047857;
  font-size: 0.95rem;
}

/* Dashboard Features */
.dashboard-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8fafc;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.feature-item:hover {
  background: #eef2ff;
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 1.5rem;
}

/* Action Buttons Demo */
.action-buttons-demo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: default;
  transition: all 0.2s ease;
}

.demo-btn-view {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1d4ed8;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.demo-btn-download {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.demo-btn-print {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Security Tips */
.security-tips {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fef3c7;
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.security-icon {
  font-size: 1.25rem;
}

/* Warning Box */
.warning-box {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-left: 4px solid #ef4444;
  color: #991b1b;
  font-size: 0.95rem;
}

.warning-box strong {
  color: #dc2626;
}

/* Responsive Styles for Steps */
@media (max-width: 768px) {
  .step-header {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
  }

  .step-title {
    font-size: 1.125rem;
  }

  .step-body {
    padding: 1.25rem;
  }

  .credentials-list {
    flex-direction: column;
  }

  .credentials-list li {
    justify-content: center;
  }

  .dashboard-features {
    grid-template-columns: 1fr;
  }

  .action-buttons-demo {
    flex-direction: column;
  }

  .demo-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .step-card {
    border-radius: 12px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .step-body {
    padding: 1rem;
  }

  .feature-item {
    padding: 0.875rem 1rem;
  }
}

/* ===================================
   PNP Registration Section Styles
   =================================== */

.registration-section {
  background: linear-gradient(135deg, #fafbff 0%, #f0f4ff 100%);
  border-radius: 16px;
  margin-top: 2rem;
}

.registration-block {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.registration-block:hover {
  box-shadow: var(--shadow-md);
}

.registration-block:last-child {
  margin-bottom: 0;
}

.registration-block h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.registration-block h3::before {
  content: "";
  width: 4px;
  height: 24px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

/* Register Criteria Grid */
.register-criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}

.criteria-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.criteria-item:hover {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.criteria-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.criteria-item span:last-child {
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Info Requirements */
.info-requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.875rem;
  margin: 1.25rem 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.info-item:hover {
  border-color: var(--primary-color);
  background: #fafbff;
}

.info-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-item span:last-child {
  font-size: 0.9375rem;
  color: var(--text-dark);
}

/* Registration Steps */
.registration-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.reg-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.25s ease;
}

.reg-step:hover {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #fafbff 0%, #f5f7ff 100%);
  transform: translateX(4px);
}

.reg-step-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.reg-step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Note Text */
.note-text {
  font-size: 0.9375rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--border-color);
}

/* Verification Block */
.verification-block .verification-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.verification-block .verification-list li {
  position: relative;
  padding: 0.625rem 0 0.625rem 2rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
  border-bottom: 1px solid #f3f4f6;
}

.verification-block .verification-list li:last-child {
  border-bottom: none;
}

.verification-block .verification-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 20px;
  height: 20px;
  background: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Info Note */
.info-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 10px;
  border: 1px solid #bfdbfe;
  margin-top: 1rem;
}

.info-note-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-note span:last-child {
  font-size: 0.9375rem;
  color: #1e40af;
  line-height: 1.5;
}

/* Tips Block */
.tips-block {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: #86efac;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  border: 1px solid #bbf7d0;
  transition: all 0.2s ease;
}

.tip-item:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.tip-check {
  width: 24px;
  height: 24px;
  background: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.tip-item span:last-child {
  font-size: 0.9375rem;
  color: #166534;
  line-height: 1.4;
}

/* Registration Section Responsive */
@media (max-width: 768px) {
  .registration-block {
    padding: 1.25rem 1rem;
  }

  .register-criteria-grid,
  .info-requirements,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .criteria-item,
  .info-item {
    padding: 0.875rem 1rem;
  }

  .reg-step {
    padding: 0.875rem 1rem;
  }

  .reg-step-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }
}

/* ================================
   Troubleshooting Section Styles
   ================================ */

.troubleshooting-section {
  background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
}

.troubleshooting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.trouble-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.trouble-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.trouble-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.trouble-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.trouble-header h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}

.trouble-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.trouble-solution {
  background: #f8fafc;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--primary-color);
}

.trouble-solution h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.625rem;
}

.trouble-solution ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trouble-solution ul li {
  font-size: 0.9375rem;
  color: var(--text-dark);
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.trouble-solution ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.trouble-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-color);
  line-height: 1.5;
}

.trouble-note strong {
  color: var(--text-dark);
}

/* Troubleshooting Section Responsive */
@media (max-width: 992px) {
  .troubleshooting-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .trouble-card {
    padding: 1.25rem;
  }

  .trouble-header h3 {
    font-size: 1rem;
  }

  .trouble-solution {
    padding: 0.875rem 1rem;
  }
}

/* ========================================
   RTC vs MTC Comparison Section Styles
   ======================================== */

.comparison-section {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.03),
    rgba(139, 92, 246, 0.05)
  );
  border-radius: 16px;
  margin-top: 2rem;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.comparison-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.comparison-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.comparison-card.rtc-card::before {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.comparison-card.mtc-card::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.comparison-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.comparison-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-icon svg {
  width: 28px;
  height: 28px;
}

.comparison-icon.rtc-icon {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.15),
    rgba(139, 92, 246, 0.2)
  );
  color: var(--primary-color);
}

.comparison-icon.mtc-icon {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15),
    rgba(52, 211, 153, 0.2)
  );
  color: #10b981;
}

.card-badge.rtc-badge {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-badge.mtc-badge {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.comparison-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.comparison-card p strong {
  color: var(--text-dark);
  font-weight: 600;
}

.comparison-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.comparison-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
  padding: 0.5rem 0.875rem;
  background: var(--bg-light);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.comparison-features li::before {
  content: "✓";
  font-weight: 700;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.rtc-card .comparison-features li::before {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
}

.mtc-card .comparison-features li::before {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.comparison-features li:hover {
  background: rgba(99, 102, 241, 0.08);
}

/* Both Required Grid */
.both-required-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.both-required-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.both-required-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.both-required-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.12),
    rgba(139, 92, 246, 0.18)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.both-required-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.both-required-item span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Comparison Section Responsive */
@media (max-width: 992px) {
  .comparison-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .both-required-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .comparison-card {
    padding: 1.5rem;
  }

  .comparison-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .comparison-card h3 {
    font-size: 1.25rem;
  }

  .comparison-icon {
    width: 48px;
    height: 48px;
  }

  .comparison-icon svg {
    width: 24px;
    height: 24px;
  }

  .both-required-item {
    padding: 1rem;
  }

  .both-required-icon {
    width: 40px;
    height: 40px;
  }

  .both-required-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   RTC Requirements Section Styles
   ============================================ */

.rtc-requirements-section {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.03),
    rgba(139, 92, 246, 0.05)
  );
  border-radius: 24px;
  padding: 3rem 0;
  margin: 2rem 0;
}

/* Requirements Grid */
.rtc-requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.rtc-requirement-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rtc-requirement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rtc-requirement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 102, 241, 0.3);
}

.rtc-requirement-card:hover::before {
  opacity: 1;
}

.rtc-requirement-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.12),
    rgba(139, 92, 246, 0.18)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.rtc-requirement-card:hover .rtc-requirement-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.rtc-requirement-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.rtc-requirement-card:hover .rtc-requirement-icon svg {
  color: white;
}

.rtc-requirement-content h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.rtc-requirement-content p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Additional Requirements */
.additional-requirements {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.additional-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.additional-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.4);
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.05), transparent);
}

.additional-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15),
    rgba(16, 185, 129, 0.25)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.additional-icon svg {
  width: 22px;
  height: 22px;
  color: var(--success-color);
}

.additional-item span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Board Exam Requirements */
.board-exam-requirements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.board-exam-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border-radius: 16px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.board-exam-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.board-exam-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(99, 102, 241, 0.2);
}

.board-exam-card:hover::after {
  transform: scaleX(1);
}

.board-exam-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.15)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.board-exam-card:hover .board-exam-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scale(1.1);
}

.board-exam-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.board-exam-card:hover .board-exam-icon svg {
  color: white;
}

.board-exam-card span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.board-exam-card span em {
  font-weight: 400;
  color: var(--text-light);
  font-style: normal;
  font-size: 0.875rem;
}

/* Requirements Section Responsive */
@media (max-width: 992px) {
  .rtc-requirements-grid {
    grid-template-columns: 1fr;
  }

  .board-exam-requirements {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .board-exam-card {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem;
  }

  .board-exam-icon {
    width: 52px;
    height: 52px;
  }

  .board-exam-icon svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 768px) {
  .rtc-requirements-section {
    padding: 2rem 0;
    margin: 1rem 0;
    border-radius: 16px;
  }

  .rtc-requirement-card {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
  }

  .rtc-requirement-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
  }

  .rtc-requirement-icon svg {
    width: 24px;
    height: 24px;
  }

  .additional-item {
    padding: 1rem;
  }

  .additional-icon {
    width: 40px;
    height: 40px;
  }

  .additional-icon svg {
    width: 20px;
    height: 20px;
  }

  .additional-item span {
    font-size: 0.9375rem;
  }

  .board-exam-card {
    padding: 1.25rem;
  }

  .board-exam-icon {
    width: 44px;
    height: 44px;
  }

  .board-exam-icon svg {
    width: 22px;
    height: 22px;
  }

  .board-exam-card span {
    font-size: 0.9375rem;
  }
}

/* ===== RTC Clearance Process Section Styles ===== */
.process-section .steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-section .step-card {
  display: flex;
  gap: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.process-section .step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.process-section .step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.process-section .step-content {
  flex: 1;
}

.process-section .step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.process-section .step-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.process-section .step-content p:last-child {
  margin-bottom: 0;
}

.process-section .step-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-section .step-list li {
  font-size: 1rem;
  color: var(--text-light);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.process-section .step-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Representative Requirements */
.representative-requirements {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.rep-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.rep-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--success-color);
}

.rep-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--success-color), #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rep-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.rep-item span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Responsive for RTC Process Section */
@media (max-width: 768px) {
  .process-section .step-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

  .process-section .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .process-section .step-content h3 {
    font-size: 1.125rem;
  }

  .representative-requirements {
    flex-direction: column;
  }

  .rep-item {
    padding: 0.875rem 1.25rem;
  }

  .rep-icon {
    width: 40px;
    height: 40px;
  }

  .rep-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* RTC Problems Section Styles */
.problems-section {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 4rem 0;
}

.problems-section .problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.problems-section .problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.problems-section .problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.problems-section .problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.problems-section .problem-card:hover::before {
  transform: scaleX(1);
}

.problems-section .problem-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.problems-section .problem-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.problems-section .problem-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.problems-section .problem-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problems-section .problem-issue {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.08),
    rgba(248, 113, 113, 0.05)
  );
  border-radius: 10px;
  padding: 1rem 1.25rem;
  border-left: 3px solid #ef4444;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.problems-section .problem-issue strong {
  color: #dc2626;
}

.problems-section .problem-solution {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.08),
    rgba(52, 211, 153, 0.05)
  );
  border-radius: 10px;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--success-color);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.problems-section .problem-solution strong {
  color: #059669;
}

/* Responsive for RTC Problems Section */
@media (max-width: 768px) {
  .problems-section .problems-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .problems-section .problem-card {
    padding: 1.5rem;
  }

  .problems-section .problem-header {
    gap: 0.875rem;
  }

  .problems-section .problem-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .problems-section .problem-header h3 {
    font-size: 1.125rem;
  }

  .problems-section .problem-issue,
  .problems-section .problem-solution {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
}

/* ===== Tips Section Styles ===== */
.tips-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #34d399);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #10b981;
}

.tip-card:hover::before {
  transform: scaleX(1);
}

.tip-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.tip-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.tip-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.tip-content {
  padding-left: 0;
}

.tip-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.tip-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0 0;
}

.tip-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

.tip-list li:last-child {
  margin-bottom: 0;
}

.tip-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1rem;
}

/* Tips Section Responsive Styles */
@media (max-width: 768px) {
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tip-card {
    padding: 1.5rem;
  }

  .tip-header {
    gap: 0.875rem;
  }

  .tip-number {
    width: 38px;
    height: 38px;
    font-size: 1.125rem;
  }

  .tip-header h3 {
    font-size: 1.125rem;
  }

  .tip-content p {
    font-size: 0.9375rem;
  }

  .tip-list li {
    font-size: 0.875rem;
    padding-left: 1.5rem;
  }
}

/* Who Needs TIN Section Styles */
.info-block {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-block:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.info-block h3 {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.info-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-block > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.info-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

.info-list li:last-child {
  margin-bottom: 0;
}

.info-note {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light);
  font-style: italic;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-color);
  margin-top: 1rem;
  margin-bottom: 0 !important;
}

.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.08),
    rgba(139, 92, 246, 0.08)
  );
  border: 1px solid rgba(99, 102, 241, 0.2);
  margin-top: 2rem;
}

.highlight-box strong {
  color: var(--primary-color);
}

/* Who Needs TIN Section Responsive Styles */
@media (max-width: 768px) {
  .info-block {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  .info-block h3 {
    font-size: 1.125rem;
    gap: 0.75rem;
  }

  .info-number {
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }

  .info-block > p {
    font-size: 0.9375rem;
  }

  .info-list li {
    font-size: 0.875rem;
    padding-left: 1.5rem;
  }

  .info-list li::before {
    width: 6px;
    height: 6px;
    top: 0.55rem;
  }

  .info-note {
    font-size: 0.875rem;
  }
}

/* Police Clearance Appointment Page - Process Steps Fix */
.how-system-works-section .step-number,
.how-to-book-section .step-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  border: none;
  backdrop-filter: none;
}

/* Section 13: Special Cases Styles */
.special-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.special-case-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.special-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.1);
}

.special-case-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.special-case-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.special-case-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.special-case-badge {
  display: inline-block;
  background: #e0e7ff;
  color: #4338ca;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.special-case-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.5rem 0;
}

.special-case-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

.special-case-list li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 3px;
  font-size: 1.2rem;
  line-height: 1.1;
}

.special-case-tip {
  background-color: #f0fdf4;
  border-left: 4px solid #22c55e;
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: #15803d;
  margin-top: auto;
}

/* HIT Status Section Styles */
.hit-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.hit-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.hit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hit-card.hit-info {
  background: linear-gradient(145deg, #ffffff 0%, #f3f4f6 100%);
  border-left: 4px solid var(--primary-color);
}

.hit-card.hit-process {
  background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
  border-left: 4px solid #f59e0b;
}

.hit-icon-wrapper {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.hit-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hit-list,
.hit-steps {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.hit-list li,
.hit-steps li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  line-height: 1.6;
}

.hit-list li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0.5rem;
  font-size: 1.2rem;
}

.hit-steps li::before {
  content: "→";
  color: #f59e0b;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

.important-note {
  background: rgba(99, 102, 241, 0.1);
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.95rem;
  color: var(--primary-dark);
  border: 1px dashed var(--primary-color);
}

.hit-action-area {
  background: #f8fafc;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.hit-requirements h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  text-align: center;
}

.req-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0;
}

.req-tag {
  background: white;
  padding: 0.6rem 1rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.req-tag::before {
  content: "✓";
  color: var(--success-color);
  font-weight: 800;
}

/* Validity Section Styles */
.validity-banner {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  border: 1px solid #c7d2fe;
  box-shadow: var(--shadow-sm);
}

.validity-banner h3 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.validity-banner .validity-duration {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 1rem 0;
  line-height: 1;
  background: linear-gradient(135deg, #4f46e5, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.validity-subtitle {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 700;
}

.validity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.validity-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
  height: 100%;
}

.validity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.validity-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.validity-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
  font-size: 1.5rem;
}

.validity-icon svg {
  width: 24px;
  height: 24px;
}

.validity-icon.warning {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}

.validity-icon.verify {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.validity-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.validity-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.validity-card .validity-duration {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.duration-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
}

.duration-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.validity-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.expired-badge {
  display: inline-block;
  background: #fee2e2;
  color: #ef4444;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.expired-uses {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.expired-use-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.expired-use-item svg {
  width: 18px;
  height: 18px;
  color: #10b981;
}

.verification-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.verification-method-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.verification-icon {
  width: 32px;
  height: 32px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-dark);
}

.verification-icon svg {
  width: 18px;
  height: 18px;
}

.verification-content h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.verification-content p {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0;
}

.validity-tip-box {
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  padding: 1.5rem;
  border-radius: 0 16px 16px 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.validity-tip-icon {
  width: 24px;
  height: 24px;
  color: #10b981;
  flex-shrink: 0;
}

.validity-tip-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #065f46;
}

.status-yes {
  color: var(--success-color);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .validity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .validity-grid {
    grid-template-columns: 1fr;
  }
  
  .validity-duration .duration-value {
    font-size: 1.5rem;
  }
}


/* Blog Page Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  padding-bottom: 5rem;
}

.blog-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.blog-card-logo {
  font-size: 3rem;
  opacity: 0.9;
  z-index: 2;
}



.blog-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.read-more:hover {
  gap: 0.75rem;
}

.blog-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* Custom List Styles - No Bullet */
.subsection ul.custom-list {
  list-style: none !important;
  margin-left: 0;
  padding-left: 0;
}

.subsection ul.custom-list li::before {
  content: none !important;
  display: none;
}

.subsection ul.custom-list li {
  padding-left: 0;
  /* Keeping it simple for block layout as user provided icons in text */
}

/* Mobile Refinements for Renewal Guide */
@media (max-width: 768px) {
  .intro-hero {
    padding: 1rem 0;
    margin-bottom: 2rem;
  }

  .intro-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }
  
  .section-content > h2 {
    font-size: 1.65rem;
    margin-bottom: 1.25rem;
  }

  .content-section {
    padding: 2rem 1.25rem !important;
    border-radius: 16px;
    margin-bottom: 2rem;
  }

  .step-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }

  .step-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .renewal-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .renewal-card {
    padding: 1.25rem;
  }

  .register-criteria-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .applicant-list li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .stylish-tip {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .warning-box {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .intro-title {
    font-size: 1.6rem;
  }

  .lead-paragraph {
    font-size: 1rem;
  }


  .section-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* Payment Step Guide Responsive Styles */
.payment-steps-container {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.payment-step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number-badge {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .payment-steps-container {
        padding: 1.5rem 1rem;
    }
    .payment-step-item {
        flex-direction: column;
        gap: 1rem;
    }
    .step-number-badge {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    .payment-options-grid {
        grid-template-columns: 1fr;
    }
    
    /* Fix for reason-grid on very narrow screens */
    .reason-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.main-footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* Fix step number contrast in How NPCS Works section */
#pnp-role ~ .subsection .step-number {
  background: #312e81 !important; /* Dark indigo fallback */
  background: linear-gradient(135deg, #312e81, #4c1d95) !important; /* Darker gradient */
  color: #ffffff !important;
}

