/* State Pages Styling */

:root {
  --state-section-spacing-mobile: 20px;
  --state-section-spacing-desktop: 40px;
  --state-text-max-width: 780px;
}

/* Hero Section */

.state-hero {
  width: 100%;
  min-height: 500px;
  position: relative;
  background-color: #3a5066;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.state-hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: var(--state-section-spacing-mobile) 0;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 500px;
}

@media (min-width: 768px) {
  .state-hero-overlay {
    padding: var(--state-section-spacing-desktop) 0;
  }
}

.state-hero .body-container {
  padding: 0 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .state-hero .body-container {
    padding: 0 40px;
  }
}

.state-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.state-hero__content h1 {
  margin-bottom: 24px;
  color: white;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.state-hero__content p.hero-subheadline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.state-hero__image {
  display: none;
}

/* Tracking System Badges */

.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 24px;
  margin-right: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid;
}

.badge--metrc {
  background-color: rgba(0, 179, 77, 0.15);
  color: #5cee8c;
  border-color: #5cee8c;
}

.badge--biotrack {
  background-color: rgba(105, 167, 255, 0.15);
  color: #7fbfff;
  border-color: #7fbfff;
}

.badge--state {
  background-color: rgba(0, 179, 77, 0.15);
  color: #5cee8c;
  border-color: #5cee8c;
}

.badge--leaf_data {
  background-color: rgba(233, 212, 96, 0.15);
  color: #e9d460;
  border-color: #e9d460;
}

.badge--neutral {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.badge--none {
  background-color: rgba(110, 110, 110, 0.15);
  color: #8f8f8f;
  border-color: #8f8f8f;
}

.state-hero .badge {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Program Indicators */

.program-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}

.indicator {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: rgba(0, 179, 77, 0.1);
  color: var(--color-brand-green);
}

.indicator::before {
  content: "✓";
  margin-right: 6px;
  font-weight: 700;
}

.indicator--active {
  background-color: rgba(0, 179, 77, 0.15);
  color: var(--color-brand-green);
}

.state-hero .indicator {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
}

/* CTA Button */

.hero-cta {
  margin-top: 32px;
}

.btn--green,
.btn--green:hover,
.btn--green:focus,
.btn--green:active {
  color: #FFFFFF !important;
}

.state-hero .btn--green {
  padding: 18px 50px !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
}

/* Social Proof Section */

.social-proof {
  background-color: #f5f5f5;
  width: 100%;
}

.social-proof .body-container {
  padding: var(--state-section-spacing-mobile) 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .social-proof .body-container {
    padding: var(--state-section-spacing-desktop) 40px;
  }
}

.social-proof__text {
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.875rem;
  color: var(--color-ui-dark-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.customer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.state-customer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.state-customer-logos img,
.customer-logos img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.2s ease;
}

.state-customer-logos img:hover,
.customer-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Overview Section */

.state-overview {
  background-color: white;
  width: 100%;
}

.state-overview .body-container {
  padding: var(--state-section-spacing-mobile) 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .state-overview .body-container {
    padding: var(--state-section-spacing-desktop) 40px;
  }
}

.regulatory-body-link {
  margin-bottom: 32px;
}

.regulatory-body-link a {
  display: inline-block;
  padding: 10px 18px;
  background-color: rgba(0, 179, 77, 0.08);
  border-radius: 4px;
  color: var(--color-brand-green);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--color-brand-green);
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.regulatory-body-link a:hover {
  background-color: var(--color-brand-green);
  color: white;
}

.overview-content {
  margin-bottom: 32px;
  line-height: 1.8;
}

.overview-content h2,
.overview-content h3 {
  margin-top: 36px;
  margin-bottom: 20px;
  color: var(--color-ui-black);
  font-size: 1.5rem;
}

.overview-content p {
  margin-bottom: 1.4em;
  color: var(--color-ui-black);
  line-height: 1.8;
}

.last-updated {
  font-size: 0.875rem;
  color: var(--color-ui-dark-grey);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-ui-grey);
  text-align: right;
}

/* State Seal */

.state-seal {
  width: 160px;
  height: auto;
  float: right;
  margin: 0 0 24px 32px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .state-seal {
    float: none;
    display: block;
    margin: 0 auto 24px auto;
    width: 120px;
  }
}

/* Compliance Guide Section */

.compliance-guide {
  background-color: #f9f9f9;
  width: 100%;
}

.compliance-guide .body-container {
  padding: var(--state-section-spacing-mobile) 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .compliance-guide .body-container {
    padding: var(--state-section-spacing-desktop) 40px;
  }
}

.compliance-guide h2 {
  margin-bottom: 40px;
  color: var(--color-ui-black);
  font-size: 1.75rem;
}

.metrc-portal-links {
  margin-bottom: 40px;
  background-color: white;
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid var(--color-brand-green);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.metrc-portal-links h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--color-ui-black);
  font-size: 1.1rem;
  font-weight: 600;
}

.metrc-portal-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.metrc-portal-links li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-ui-grey);
}

.metrc-portal-links li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.metrc-portal-links li::before {
  content: "→ ";
  color: var(--color-brand-green);
  font-weight: 600;
  margin-right: 8px;
}

.metrc-portal-links a {
  color: var(--color-brand-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.metrc-portal-links a:hover {
  color: var(--color-brand-green-hover);
  text-decoration: underline;
}

.compliance-content {
  background-color: white;
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid var(--color-brand-green);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  line-height: 1.8;
}

.compliance-content h2,
.compliance-content h3,
.compliance-content h4 {
  color: var(--color-ui-black);
  margin-top: 28px;
  margin-bottom: 16px;
}

.compliance-content h2 {
  font-size: 1.5rem;
}

.compliance-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.compliance-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.compliance-content p {
  margin-bottom: 1.4em;
  color: var(--color-ui-black);
}

.compliance-content ul,
.compliance-content ol {
  margin-bottom: 1.4em;
  padding-left: 24px;
}

.compliance-content li {
  margin-bottom: 8px;
  line-height: 1.8;
  color: var(--color-ui-black);
}

.compliance-content ol li {
  list-style: decimal;
}

.compliance-content ul li {
  list-style: none;
  position: relative;
  padding-left: 16px;
}

.compliance-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-brand-green);
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1;
}

/* Code blocks for license numbers */
.compliance-content code,
.compliance-content pre {
  background-color: #f5f5f5;
  border: 1px solid var(--color-ui-grey);
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  padding: 2px 6px;
}

.compliance-content pre {
  padding: 16px;
  overflow-x: auto;
  line-height: 1.6;
}

/* Regulation Cards Section */

.regulation-cards {
  background-color: white;
  width: 100%;
}

.regulation-cards .body-container {
  padding: var(--state-section-spacing-mobile) 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .regulation-cards .body-container {
    padding: var(--state-section-spacing-desktop) 40px;
  }
}

.regulation-cards h2 {
  margin-bottom: 48px;
  color: var(--color-ui-black);
  font-size: 1.75rem;
}

.regulation-cards__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.regulation-cards__content h3 {
  margin: 0;
  padding: 20px 24px;
  background-color: white;
  border: 1px solid var(--color-ui-grey);
  border-top: 4px solid var(--color-brand-green);
  color: var(--color-brand-green);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
}

.regulation-cards__content h3:hover {
  background-color: rgba(0, 179, 77, 0.02);
}

.regulation-cards__content h3::after {
  content: "▼";
  font-size: 12px;
  color: var(--color-brand-green);
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: 16px;
  flex-shrink: 0;
}

.regulation-cards__content h3.active::after {
  transform: rotate(-180deg);
}

.regulation-cards__content p {
  margin: 0;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #fafafa;
  border: 1px solid var(--color-ui-grey);
  border-top: none;
  border-bottom: 1px solid var(--color-ui-grey);
  color: var(--color-ui-dark-grey);
  line-height: 1.7;
  font-size: 0.95rem;
}

.regulation-cards__content h3.active + p {
  padding: 24px;
  max-height: 1000px;
}

/* Solutions by License Section */

.solutions-by-license {
  background-color: #f9f9f9;
  width: 100%;
}

.solutions-by-license .body-container {
  padding: var(--state-section-spacing-mobile) 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .solutions-by-license .body-container {
    padding: var(--state-section-spacing-desktop) 40px;
  }
}

.solutions-by-license h2 {
  margin-bottom: 48px;
  color: var(--color-ui-black);
  font-size: 1.75rem;
}

.license-cards {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .license-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .license-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.license-card {
  background-color: white;
  border: 1px solid var(--color-ui-grey);
  border-radius: 6px;
  padding: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.license-card:hover {
  border-color: var(--color-brand-green);
  box-shadow: 0 12px 32px rgba(0, 179, 77, 0.15);
  transform: translateY(-6px);
}

.license-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--color-brand-green);
  font-size: 1.3rem;
  font-weight: 600;
}

.license-card p {
  color: var(--color-ui-dark-grey);
  line-height: 1.7;
  margin-bottom: 20px;
}

.link-arrow {
  color: var(--color-brand-green);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.link-arrow:hover {
  color: var(--color-brand-green-hover);
}

.link-arrow::after {
  content: " →";
  transition: transform 0.2s ease;
  display: inline-block;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.license-types-detail {
  background-color: white;
  padding: 28px;
  border-radius: 6px;
  border: 1px solid var(--color-ui-grey);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  line-height: 1.8;
  margin-bottom: 40px;
}

.license-types-detail h3 {
  color: var(--color-ui-black);
  margin-top: 0;
  margin-bottom: 16px;
}

.license-types-detail p {
  color: var(--color-ui-dark-grey);
}

/* Testimonial Section */

.testimonial {
  background-color: #2c2c2c;
  color: white;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonial::before {
  content: """;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 120px;
  color: rgba(0, 179, 77, 0.15);
  line-height: 1;
  z-index: 0;
}

.testimonial .body-container {
  padding: var(--state-section-spacing-mobile) 20px;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .testimonial .body-container {
    padding: var(--state-section-spacing-desktop) 40px;
  }
}

.testimonial__quote {
  font-size: 1.4rem;
  font-style: italic;
  color: white;
  margin-bottom: 32px;
  line-height: 1.8;
  font-weight: 300;
}

.testimonial__attribution {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial__logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.testimonial__info {
  flex: 1;
}

.testimonial__name {
  font-weight: 600;
  color: white;
  margin: 0;
  font-size: 1rem;
}

.testimonial__title {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 4px 0 0 0;
}

/* Gated Content Section */

.gated-content {
  background: linear-gradient(135deg, rgba(0, 179, 77, 0.04) 0%, rgba(244, 250, 248, 0.5) 100%);
  width: 100%;
}

.gated-content .body-container {
  padding: var(--state-section-spacing-mobile) 20px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .gated-content .body-container {
    padding: var(--state-section-spacing-desktop) 40px;
    gap: 60px;
  }
}

@media (min-width: 768px) {
  .gated-content .body-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }
}

.gated-content__image {
  order: -1;
}

@media (min-width: 768px) {
  .gated-content__image {
    order: 1;
  }
}

.gated-content__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.gated-content__text h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--color-ui-black);
  font-size: 1.75rem;
}

.gated-content__text p {
  color: var(--color-ui-dark-grey);
  line-height: 1.7;
  margin-bottom: 28px;
}

.gated-content__text .btn {
  display: inline-block;
}

/* State Resources Section */

.state-resources {
  background-color: #f9f9f9;
  width: 100%;
}

.state-resources .body-container {
  padding: var(--state-section-spacing-mobile) 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .state-resources .body-container {
    padding: var(--state-section-spacing-desktop) 40px;
  }
}

.state-resources h2 {
  margin-bottom: 48px;
  color: var(--color-ui-black);
  font-size: 1.75rem;
}

.resources-content {
  display: block;
  line-height: 1.8;
}

.resources-content > h3 {
  margin-top: 32px;
}

.resources-content > h3:first-child {
  margin-top: 0;
}

.resources-content h3 {
  color: var(--color-ui-black);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-brand-green);
}

.resources-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 32px 0;
}

.resources-content li {
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--color-ui-grey);
  position: relative;
}

.resources-content li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.resources-content li::before {
  content: "→ ";
  color: var(--color-brand-green);
  font-weight: 600;
  margin-right: 8px;
}

.resources-content a {
  color: var(--color-brand-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.resources-content a:hover {
  color: var(--color-brand-green-hover);
  text-decoration: underline;
}

/* FAQ Section */

.state-faq {
  background-color: white;
  width: 100%;
}

.state-faq .body-container {
  padding: var(--state-section-spacing-mobile) 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .state-faq .body-container {
    padding: var(--state-section-spacing-desktop) 40px;
  }
}

.state-faq h2 {
  margin-bottom: 48px;
  color: var(--color-ui-black);
  font-size: 1.75rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
}

.faq-item {
  border: 1px solid var(--color-ui-grey);
  border-radius: 4px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.faq-item-header {
  padding: 20px 24px;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.faq-item-header:hover {
  background-color: rgba(0, 179, 77, 0.02);
}

.faq-item-header h3 {
  margin: 0;
  color: var(--color-ui-black);
  font-size: 1rem;
  font-weight: 600;
  flex: 1;
}

.faq-item-header::after {
  content: "▼";
  font-size: 12px;
  color: var(--color-brand-green);
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: 16px;
  flex-shrink: 0;
}

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

.faq-item-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #fafafa;
  border-top: 1px solid var(--color-ui-grey);
}

.faq-item.active .faq-item-body {
  padding: 24px;
  max-height: 1000px;
}

.faq-item-body p {
  margin: 0;
  color: var(--color-ui-dark-grey);
  line-height: 1.7;
}

.faq-item-body h3,
.faq-item-body h4,
.faq-item-body ul,
.faq-item-body ol {
  margin-top: 0;
  margin-bottom: 12px;
}

.faq-item-body ul,
.faq-item-body ol {
  padding-left: 24px;
}

/* Demo Form Section */

.demo-form-section {
  background-color: #1f1f1f;
  color: white;
  text-align: center;
  width: 100%;
}

.demo-form-section .body-container {
  padding: var(--state-section-spacing-mobile) 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .demo-form-section .body-container {
    padding: var(--state-section-spacing-desktop) 40px;
  }
}

.demo-form-section h2 {
  color: white;
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.demo-form-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.demo-form-section form {
  max-width: 600px;
  margin: 40px auto 0;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.demo-form-section form input,
.demo-form-section form select,
.demo-form-section form textarea {
  width: 100%;
  box-sizing: border-box;
}

.demo-form-section form input[type="submit"],
.demo-form-section form .hs-button {
  background-color: var(--color-brand-green);
  color: white;
  margin-top: 10px;
}

.demo-form-section form input[type="submit"]:hover,
.demo-form-section form .hs-button:hover {
  background-color: var(--color-brand-green-hover);
}

/* Global Image Constraints */

.body-container-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Table Styling */

.body-container-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border: 1px solid var(--color-ui-grey);
  border-radius: 4px;
  overflow: hidden;
}

.body-container-wrapper table thead {
  background-color: var(--color-ui-dark-grey);
  color: white;
}

.body-container-wrapper table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.body-container-wrapper table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-ui-grey);
  color: var(--color-ui-black);
}

.body-container-wrapper table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.body-container-wrapper table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .body-container-wrapper table {
    font-size: 0.875rem;
    overflow-x: auto;
    display: block;
  }

  .body-container-wrapper table thead,
  .body-container-wrapper table tbody,
  .body-container-wrapper table th,
  .body-container-wrapper table td {
    display: block;
  }

  .body-container-wrapper table th {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .body-container-wrapper table td {
    padding-left: 50%;
    position: relative;
  }

  .body-container-wrapper table td:before {
    content: attr(data-label);
    position: absolute;
    left: 6px;
    font-weight: 600;
    color: var(--color-ui-dark-grey);
  }
}

/* Link Styling */

.body-container-wrapper a {
  color: var(--color-brand-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

.body-container-wrapper a:hover {
  color: var(--color-brand-green-hover);
  text-decoration: underline;
}

/* List Styling */

.body-container-wrapper ul,
.body-container-wrapper ol {
  padding-left: 24px;
}

.body-container-wrapper ul li,
.body-container-wrapper ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Responsive Text */

@media (max-width: 768px) {
  .state-hero__content h1 {
    font-size: 2rem;
  }

  .state-hero__content p.hero-subheadline {
    font-size: 1rem;
  }

  .testimonial__quote {
    font-size: 1.25rem;
  }

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

  .regulation-cards h2,
  .solutions-by-license h2,
  .state-resources h2,
  .state-faq h2 {
    font-size: 1.5rem;
  }
}