/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  font-weight: 300;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.global-nav {
  background-color: #262626;
  color: #f7f7f7;
  padding: 0.2rem 0;
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #f7f7f7;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #f7f7f7;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #e95420;
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  min-width: 200px;
  list-style: none;
  padding: 0.5rem 0;
  margin-top: 0;
  border-radius: 0.25rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.nav-dropdown-menu li {
  padding: 0;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #f7f7f7;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.nav-dropdown-menu li a:hover {
  background-color: #444;
  color: #fff;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

/* Strip sections */
.p-strip {
  padding: 3rem 0;
}

.p-strip--hero {
  background: linear-gradient(to bottom right, #333, #444);
  color: #fff;
  padding: 4rem 0;
}

.p-strip--hero p {
  font-size: 1.25rem;
}

.p-strip--light {
  background-color: #f7f7f7;
}

.p-strip--bordered {
  border-top: 1px solid #cdcdcd;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 100;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.p-heading--4 {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  max-width: 40em;
}

/* Row and columns */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}

.u-equal-height {
  align-items: stretch;
}

.u-vertically-center {
  align-items: center;
}

.col-4 {
  flex: 0 0 33.33%;
  padding: 0 0.75rem;
}

.col-6 {
  flex: 0 0 50%;
  padding: 0 0.75rem;
}

.col-8 {
  flex: 0 0 66.67%;
  padding: 0 0.75rem;
}

.u-fixed-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.u-align--center {
  text-align: center;
}

/* Cards */
.p-card {
  background: #fff;
  border: 1px solid #cdcdcd;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.p-card__title {
  margin-bottom: 1rem;
}

.p-card__content {
  flex: 1;
  color: #111;
}

.u-sv1 {
  margin-bottom: 1rem !important;
  border: 0;
  border-top: 1px solid #cdcdcd;
}

/* Buttons */
.p-button,
.p-button--positive {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid #cdcdcd;
  border-radius: 0.125rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.p-button {
  background-color: #fff;
  color: #111;
}

.p-button:hover {
  background-color: #f7f7f7;
}

.p-button--positive {
  background-color: #0e8420;
  color: #fff;
  border-color: #0e8420;
}

.p-button--positive:hover {
  background-color: #0c6d1a;
  border-color: #0c6d1a;
}

/* Screenshot placeholders */
.screenshot-placeholder {
  background-color: #e5e5e5;
  border: 2px dashed #999;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  margin: 2rem 0;
  color: #666;
  font-size: 1.2rem;
}

/* Form styles */
.demo-form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.625rem;
  border: 1px solid #cdcdcd;
  border-radius: 0.125rem;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input[type="checkbox"] {
  width: auto;
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.form-group label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
}

/* Footer */
.site-footer {
  background-color: #262626;
  color: #f7f7f7;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.site-footer a {
  color: #f7f7f7;
  text-decoration: underline;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #e95420;
}

/* Responsive */
@media (max-width: 768px) {
  .col-4,
  .col-6,
  .col-8 {
    flex: 0 0 100%;
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .p-strip--hero {
    padding: 2rem 0;
  }

  .nav-links {
    gap: 1rem;
  }
}

/* Badge/Notice */
.notice-badge {
  display: inline-block;
  background-color: #e95420;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* Founder Profile - Floating Image */
.founder-profile-float {
  float: right;
  width: 120px;
  height: auto;
  border-radius: 50%;
  border: 3px solid #cdcdcd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0 0 1rem 1.5rem;
  opacity: 0.85;
  filter: grayscale(100%);
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.linkedin-link:hover {
  color: #0077b5;
  text-decoration: underline;
}

.linkedin-icon {
  flex-shrink: 0;
  opacity: 0.8;
}

/* Responsive adjustments for founder profile */
@media (max-width: 768px) {
  .founder-profile-float {
    width: 90px;
    margin: 0 0 1rem 1rem;
  }
}

/* Workflow Badge - matches design system */
.workflow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #0e8420;
  color: white;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Blog-specific styles */

/* Article meta */
.article-meta {
  color: #666;
  font-size: 0.9rem;
  font-weight: 300;
}

.article-meta time {
  font-style: normal;
}

.reading-time {
  margin-left: 0.25rem;
}

/* Article meta header (Ubuntu blog style) */
.article-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cdcdcd;
}

.meta-info {
  color: #666;
  font-size: 0.9rem;
  font-weight: 300;
}

.meta-separator {
  margin: 0 0.5rem;
  color: #999;
}

.share-buttons-header {
  display: flex;
  gap: 0.75rem;
}

.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #666;
  transition: color 0.2s;
}

.share-icon:hover {
  color: #0e8420;
}

/* Featured image */
.featured-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.25rem;
}

/* Category badges */
.category-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.category-en-18031 {
  background-color: #0e8420;
  color: white;
}

.category-red-directive {
  background-color: #e95420;
  color: white;
}

.category-cra,
.category-cyber-resilience-act {
  background-color: #0e8420;
  color: white;
}

.category-best-practices {
  background-color: #666;
  color: white;
}

/* Article hero */
.article-hero {
  background-color: white;
  padding: 2rem 0 1rem 0;
}

.article-hero h1 {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

/* Article content - readable column */
.article-content {
  max-width: 45em;
  margin: 0 auto;
}

/* Article header - centered with readable width */
.article-header-content {
  max-width: 45em;
  margin: 0 auto;
}

/* CTA content - centered with readable width */
.cta-content {
  max-width: 45em;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.article-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-content p {
  max-width: none;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  line-height: 1.7;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content code {
  background-color: #f7f7f7;
  padding: 0.125rem 0.375rem;
  border-radius: 0.125rem;
  font-size: 0.9em;
  font-family: 'Monaco', 'Courier New', monospace;
}

.article-content pre {
  background-color: #f7f7f7;
  padding: 1rem;
  border-radius: 0.25rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.article-content pre code {
  background-color: transparent;
  padding: 0;
}

/* Callout boxes */
.article-content .callout-box {
  background-color: #f7f7f7;
  border-left: 4px solid #0e8420;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
}

.article-content .callout-box p:last-child {
  margin-bottom: 0;
}

/* Article share section */
.article-share {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #cdcdcd;
}

.share-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.share-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.2s;
}

.share-twitter {
  background-color: #1DA1F2;
  color: white;
}

.share-twitter:hover {
  background-color: #0d8bd9;
}

.share-linkedin {
  background-color: #0077b5;
  color: white;
}

.share-linkedin:hover {
  background-color: #005885;
}

/* Blog cards */
.blog-card {
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 1.5rem;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-card h3 a {
  color: #262626;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card h3 a:hover {
  color: #0e8420;
}

/* Ubuntu-style blog cards */
.blog-card-ubuntu {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card-ubuntu:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
  border-color: #cdcdcd;
}

.blog-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin: 0;
  transition: transform 0.2s ease;
}

.blog-card-ubuntu:hover .blog-card-image {
  transform: scale(1.02);
}

.blog-card-content {
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0.5rem 0 0.75rem 0;
  line-height: 1.3;
  flex-grow: 0;
}

.blog-card-title a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: #0e8420;
  text-decoration: none;
}

.blog-card-meta {
  color: #666;
  font-size: 0.8125rem;
  font-weight: 300;
  margin: 0 0 0.75rem 0;
  flex-grow: 0;
}

.blog-card-excerpt {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

/* Button link style */
.p-button--link {
  display: inline-block;
  color: #0e8420;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  padding: 0;
  border: none;
  background: none;
  margin: 0;
}

.p-button--link:hover {
  color: #0c6d1a;
  text-decoration: underline;
}

/* Featured article */
.featured-article {
  border: 2px solid #0e8420;
  padding: 0;
  overflow: hidden;
}

.featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Category filter tabs */
.category-filter {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tab {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  color: #666;
  background-color: white;
  border: 1px solid #cdcdcd;
  transition: all 0.2s;
  font-weight: 300;
}

.filter-tab:hover {
  background-color: #f7f7f7;
  color: #111;
}

.filter-tab.active {
  background-color: #0e8420;
  color: white;
  border-color: #0e8420;
}

/* Shallow and deep strips */
.p-strip.is-shallow {
  padding: 2rem 0;
}

.p-strip.is-deep {
  padding: 4rem 0;
}

/* CTA strip */
.cta-strip h2 {
  color: white;
  margin-bottom: 0.75rem;
}

.cta-strip p {
  color: white;
  margin-bottom: 1.5rem;
}

/* Column utilities for blog */
.col-12 {
  flex: 0 0 100%;
  padding: 0 0.75rem;
}

/* Blog post item */
.blog-post-item {
  margin-bottom: 1.5rem;
  display: flex;
}

/* Responsive blog styles */
@media (max-width: 768px) {
  .article-content {
    max-width: none;
  }

  .category-filter {
    justify-content: center;
  }

  .filter-tab {
    font-size: 0.875rem;
    padding: 0.4rem 0.75rem;
  }

  .article-share {
    margin-top: 2rem;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-button {
    text-align: center;
  }

  .blog-card-ubuntu {
    margin-bottom: 1.5rem;
  }

  .blog-card-image {
    height: 160px;
  }

  .blog-card-content {
    padding: 1rem 1.25rem 1.25rem 1.25rem;
  }

  .blog-card-title {
    font-size: 1.125rem;
    margin: 0.25rem 0 0.5rem 0;
  }

  .blog-card-meta {
    font-size: 0.75rem;
    margin: 0 0 0.5rem 0;
  }

  .blog-card-excerpt {
    font-size: 0.8125rem;
  }

  .blog-post-item {
    margin-bottom: 1.5rem;
  }
}

/* ============================================
   Expert Access Free Assessment Styling
   ============================================ */

/* Inline Callout in RED Section */
.expert-assessment-inline {
  background: linear-gradient(to right, #f0f7ff 0%, #ffffff 100%);
  border: 2px solid #0066CC;
  border-radius: 0.375rem;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}

.inline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0066CC;
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.inline-badge svg {
  width: 20px;
  height: 20px;
  color: white;
}

.inline-headline {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: #111;
}

.inline-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.25rem;
  max-width: 100%;
}

.inline-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.inline-benefit-tag {
  display: inline-block;
  background: white;
  border: 1px solid #0066CC;
  color: #0066CC;
  padding: 0.375rem 0.875rem;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .expert-assessment-inline {
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
  }

  .inline-headline {
    font-size: 1.25rem;
  }

  .inline-description {
    font-size: 0.9375rem;
  }

  .inline-benefits {
    gap: 0.5rem;
  }

  .inline-benefit-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }
}

/* ============================================
   CRA Compliance Solution Styles
   ============================================ */

/* CRA Color Scheme */
:root {
  --cra-primary: #0e8420;
  --cra-primary-hover: #0c6d1a;
  --cra-secondary: #444;
  --cra-light-bg: #f7f7f7;
}

/* CRA Button */
.p-button--cra {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid;
  border-radius: 0.125rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  background-color: var(--cra-primary);
  color: #fff;
  border-color: var(--cra-primary);
}

.p-button--cra:hover {
  background-color: var(--cra-primary-hover);
  border-color: var(--cra-primary-hover);
}

/* CRA Hero Strip */
.p-strip--cra-hero {
  background: linear-gradient(to bottom right, #333, #444);
  color: #fff;
  padding: 4rem 0;
}

.p-strip--cra-hero p {
  font-size: 1.25rem;
}

/* CRA Badge - Coming Soon */
.cra-badge {
  display: inline-block;
  background-color: var(--cra-primary);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  margin-left: 0.5rem;
}

.cra-badge--coming-soon {
  background-color: #ffa500;
  color: #111;
}

/* Solution Selector Cards */
.solution-card {
  background: #fff;
  border: 2px solid #cdcdcd;
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.solution-card--red {
  border-color: #0e8420;
}

.solution-card--red:hover {
  border-color: #0c6d1a;
  box-shadow: 0 8px 16px rgba(14, 132, 32, 0.2);
}

.solution-card--cra {
  border-color: var(--cra-primary);
}

.solution-card--cra:hover {
  border-color: var(--cra-primary-hover);
  box-shadow: 0 8px 16px rgba(94, 44, 165, 0.2);
}

.solution-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.solution-card__badge--available {
  background-color: #0e8420;
  color: #fff;
}

.solution-card__badge--coming-soon {
  background-color: var(--cra-primary);
  color: #fff;
}

.solution-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.solution-card__title {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.solution-card__subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.solution-card__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.solution-card__list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}

.solution-card__list li:last-child {
  border-bottom: none;
}

.solution-card__deadline {
  font-size: 0.9rem;
  color: #666;
  margin: 1rem 0;
  padding: 0.75rem;
  background-color: #f7f7f7;
  border-radius: 0.25rem;
}

.solution-card__deadline strong {
  color: #e95420;
}

.solution-card__cta {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.solution-card__features {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.solution-card__features li {
  padding: 0.375rem 0;
  font-size: 0.9rem;
  color: #666;
  border: none;
}

.solution-card__features li::before {
  content: "✓ ";
  color: #0e8420;
  font-weight: bold;
  margin-right: 0.5rem;
}

.solution-card--cra .solution-card__features li::before {
  color: var(--cra-primary);
}

/* CRA-specific card styling */
.solution-card--cra .solution-card__icon {
  color: var(--cra-primary);
}

/* Pricing tabs */
.pricing-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid #cdcdcd;
}

.pricing-tab {
  flex: 1;
  padding: 1rem 2rem;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  transition: all 0.2s;
}

.pricing-tab:hover {
  background-color: #f7f7f7;
  color: #111;
}

.pricing-tab.active {
  color: #111;
  font-weight: 500;
  border-bottom-color: #0e8420;
  background-color: transparent;
}

.pricing-tab--cra.active {
  border-bottom-color: var(--cra-primary);
}

.pricing-content {
  display: none;
}

.pricing-content.active {
  display: block;
}

/* Pricing Table */
.p-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.p-table th,
.p-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #cdcdcd;
}

.p-table thead th {
  background-color: #f7f7f7;
  font-weight: 500;
  color: #111;
}

.p-table tbody tr:hover {
  background-color: #fafafa;
}

.p-table tbody td:first-child {
  color: #333;
}

/* Responsive adjustments for solution cards */
@media (max-width: 768px) {
  .solution-card {
    margin-bottom: 1.5rem;
  }

  .solution-card__cta {
    flex-direction: column;
  }

  .solution-card__cta .p-button,
  .solution-card__cta .p-button--positive,
  .solution-card__cta .p-button--cra {
    margin: 0 0 0.5rem 0;
    text-align: center;
  }

  .pricing-tabs {
    flex-direction: column;
  }

  .pricing-tab {
    border-bottom: 1px solid #cdcdcd;
    border-left: 3px solid transparent;
  }

  .pricing-tab.active {
    border-bottom-color: #cdcdcd;
    border-left-color: #0e8420;
  }

  .pricing-tab--cra.active {
    border-left-color: var(--cra-primary);
  }
}
