:root {
  --hs-green-dark: #1c6b46;
  --hs-green: #218a56;
  --hs-green-light: #e6f2e9;
  --hs-bg-hero: #eaf4ec;
  --hs-text: #2e2e2e;
  --hs-text-muted: #5a5f5c;
  --hs-card-border: #dfe9e2;
}
/* ===== Hero Section ===== */
.exemption-section.hero-section {
  background: var(--hs-bg-hero);
  padding-top: 90px;
  padding-bottom: 45px;
}
.exemption-section.notes-cards-wrap {
  margin-top: -4.5rem !important;
  margin-bottom: 3rem !important;
  position: relative;
  z-index: 2;
}
.exemption-section .hero-eyebrow {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--hs-text);
  margin-bottom: 0.15rem;
}
.exemption-section .hero-title {
  font-weight: 800;
  color: var(--hs-green-dark);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.exemption-section .hero-copy {
  color: #444;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
  text-align: justify;
}
.exemption-section .hero-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 30px -12px rgba(28, 107, 70, 0.35);
}
.exemption-section .hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.exemption-section .assessment-table-wrap{
    margin-top:1.25rem;
    background:#ffffff;
    border:1px solid var(--hs-card-border);
    border-radius:.6rem;
    overflow:hidden;
    box-shadow:0 6px 18px -12px rgba(0,0,0,.15);
  }

 .exemption-section .assessment-table{
    font-size:.85rem;
    margin-bottom:0;
  }

 .exemption-section .assessment-table thead th{
    background:var(--hs-green);
    color:#fff;
    font-weight:600;
    border:none;
    padding:.75rem 1rem;
    text-align:center;
    vertical-align:middle;
  }

 .exemption-section .assessment-table thead th:first-child{
    text-align:left;
  }

 .exemption-section .assessment-table tbody td{
    padding:.7rem 1rem;
    color:var(--hs-text);
    border-bottom: 1px solid #ccc;
    text-align:center;
    vertical-align:middle;
  }

 .exemption-section .assessment-table tbody td:first-child{
    text-align:left;
    font-weight:600;
    color:var(--hs-green-dark);
  }

 .exemption-section .assessment-table tbody tr:last-child td{
    border-bottom:none;
  }

  .exemption-section .assessment-table tbody tr:nth-child(even){
    background:var(--hs-green-light);
  }
/* ===== Notes Section ===== */
.exemption-section .notes-heading {
  text-align: center;
  font-weight: 700;
  color: var(--hs-text);
  font-size: 1.15rem;
  margin: 3rem 0 2rem;
}
.exemption-section .note-card-outer {
  position: relative;
  height: 100%;
  padding-bottom: 10px;
}
.exemption-section .note-card-outer::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 22px;
  background: var(--hs-green);
  border-radius: 0.6rem;
  z-index: 0;
}
.exemption-section .note-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid var(--hs-card-border);
  border-radius: 0.6rem;
  padding: 1.5rem 1.25rem 1.25rem;
  height: 100%;
  box-shadow: 0 6px 18px -12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.exemption-section .note-card-outer:hover .note-card {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -12px rgba(28, 107, 70, 0.3);
}
.exemption-section .note-number {
  width: 34px;
  height: 34px;
  background: var(--hs-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-right: 0.9rem;
  flex-shrink: 0;
}
.exemption-section .note-text {
  font-size: 16px;
  color: var(--hs-text-muted);
  line-height: 1.55;
  margin: 0;
  text-align: justify;
}
/* ===== FAQ Section ===== */
.exemption-section .faq-section {
  padding: 1rem 0 5rem;
}
.exemption-section .faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #eef0ef;
  color: var(--hs-text);
  border-radius: 50rem;
  padding: 0.4rem 1.1rem;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.exemption-section .faq-badge svg {
  width: 16px;
  height: 16px;
}
.exemption-section .faq-heading {
  text-align: center;
  font-weight: 700;
  color: var(--hs-green-dark);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.3;
  max-width: 65%;
  margin: 0 auto 2.5rem;
}
.exemption-section .accordion-item {
  border: 1px solid var(--hs-card-border);
  border-radius: 0.6rem !important;
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.exemption-section .accordion-button {
  font-weight: 600;
  font-size: 18px;
  color: var(--hs-text);
  background: #fff;
  padding: 1.1rem 1.25rem;
}
.exemption-section .accordion-button:not(.collapsed) {
  color: var(--hs-green-dark);
  background: var(--hs-green-light);
  box-shadow: none;
}
.exemption-section .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(33, 138, 86, 0.2);
}
.exemption-section .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 400;
  color: #8a8f8c;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #eef0ef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.exemption-section .accordion-button:not(.collapsed)::after {
  content: "\2212";
  color: var(--hs-green-dark);
  background-color: var(--hs-green-light);
  transform: none;
}
.exemption-section .accordion-body {
  font-size: 16px;
    color: #606060;
    line-height: 1.6;
    padding: 15px;
}
@media (max-width: 767.98px) {
  .exemption-section .hero-img-wrap {
    margin-top: 1.75rem;
  }
  .exemption-section .notes-heading {
    margin-top: 2.25rem;
  }
  .exemption-section .notes-cards-wrap {
    margin-top: -2rem;
  }
}

