
    :root {
      --primary-color: #10B981;
      --secondary-color: #059669;
      --accent-color: #D1FAE5;
      --text-color: #1f2937;
      --light-text: #6b7280;
      --bg-color: #f9fafb;
      --white: #ffffff;
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --primary: #10B981;
      --primary-dark: #059669;
      --primary-light: #D1FAE5;
      --secondary: #3B82F6;
      --dark: #1F2937;
      --darker: #111827;
      --light: #F9FAFB;
      --lighter: #F3F4F6;
      --white: #FFFFFF;
      --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --rounded-sm: 0.5rem;
      --rounded: 1rem;
      --rounded-lg: 1.5rem;
      --rounded-full: 9999px;
    }

    a {
      color: rgb(255, 255, 255);
      text-decoration: none;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text-color);
      background-color: var(--bg-color);
      line-height: 1.6;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .container-logo {
      padding: 0 50px;
    }

    header nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Hero Section */
    .container-hero {
      background: linear-gradient(135deg, #10b981, #3B82F6);
      position: relative;

    }

    .hero-div {
      max-width: 1200px;
      margin: auto;
      padding: 3rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 992px) {
      .hero-div {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    .hero {
      flex: 1;
    }

    .hero h1 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: var(--white);
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
    }

    .hero p {
color: #fff;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
    }

    .hero a {
      margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hero a:hover {
  transform: scale(1.05);
}

    .container-hero .pricing {
      flex: 1.3;
      background-color: white;
      border-radius: 5px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      padding: 1.5rem;
      border-top-right-radius: 100px;
      border-bottom-left-radius: 100px;
      overflow: hidden;
    }

    .container-hero .pricing .logo {
      text-align: center;
    }

    .container-hero .pricing h2 {
      text-align: center;
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: #1e293b;
    }

    .container-hero .pricing p {
      font-size: 0.9rem;
      color: #16a34a;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      border-bottom-left-radius: 40px;
      overflow: hidden;
    }

    th,
    td {
      padding: 0.75rem;
      text-align: left;
      border-top: 1px solid #e5e7eb;
      font-size: 0.9rem;
    }

    th {
      color: cadetblue;
      font-weight: 600;
    }

    td:first-child {
      font-weight: 500;
      color: #475569;
    }

    tr:hover {
      background-color: #f1f5f9;
      transition: background-color 0.2s ease;
    }

    /* Responsive stacked layout for mobile */
    @media (max-width: 768px) {
      .container-hero .pricing {
        border-top-right-radius: 5px;
        border-bottom-left-radius: 5px;
        overflow: hidden;
      }

      .hero {
        text-align: center;
      }

      .hero-div {

        padding: 1rem 1rem;
      }

      table,
      thead,
      tbody,
      th,
      td,
      tr {
        display: block;
      }

      thead {
        display: none;
      }

      tr {
        background: #f9fafb;
        margin-bottom: 1rem;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        padding: 1rem;
      }

      td {
        font-size: 0.8rem;
        padding: 0.5rem 0;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #e5e7eb;
      }

      td:last-child {
        border-bottom: none;
      }

      td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #1e40af;
        margin-right: 1rem;
        flex: 1;
      }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      border-radius: var(--rounded-full);
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-primary {
      background-color: var(--white);
      color: var(--primary);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-xl);
      background-color: var(--primary-dark);
      border-color: var(--primary-dark);
      color: #fff;
    }

    .btn-outline {
      border: 2px solid var(--white);
      color: var(--white);
    }

    .btn-outline:hover {
      background-color: var(--white);
      color: var(--primary);
    }

    /* .btn {
  background-color: var(--primary-color);
  display: inline-block;
  background: transparent;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: cadetblue;
  box-shadow: 0 4px 15px rgba(72, 149, 239, 0.3);
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInUp 1s ease forwards;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  margin-left: 15px;
  box-shadow: none;

}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
} */

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 50px;
      opacity: 0;
      animation: fadeInUp 1s ease forwards 0.9s;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Typewriter Animation - CSS Only */
    .typewriter-container {
      margin: 0 auto 40px;
      max-width: 700px;
      text-align: center;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .typewriter-text {
      font-size: 18px;
      color: var(--accent-color);
      font-weight: 500;
      overflow: hidden;
      border-right: 2px solid var(--accent-color);
      white-space: nowrap;
      margin: 0 auto;
      letter-spacing: 1px;
      animation:
        typing 3.5s steps(40, end),
        blink-caret 0.75s step-end infinite;
    }

    @keyframes typing {
      from {
        width: 0
      }

      to {
        width: 100%
      }
    }

    @keyframes blink-caret {

      from,
      to {
        border-color: transparent
      }

      50% {
        border-color: var(--accent-color);
      }
    }


    /* Features Section */
    .features {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 15px;
      opacity: 0;
      animation: fadeIn 1s ease forwards;
    }

    .section-title p {
      color: var(--light-text);
      max-width: 600px;
      margin: 0 auto;
      opacity: 0;
      animation: fadeIn 1s ease forwards 0.3s;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background-color: var(--white);
      border-radius: 8px;
      padding: 30px;
      box-shadow: var(--shadow);
      transition: transform 0.3s;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
    }

    .feature-card:nth-child(1) {
      animation-delay: 0.2s;
    }

    .feature-card:nth-child(2) {
      animation-delay: 0.4s;
    }

    .feature-card:nth-child(3) {
      animation-delay: 0.6s;
    }

    .feature-card:nth-child(4) {
      animation-delay: 0.8s;
    }

    .feature-card:nth-child(5) {
      animation-delay: 1.0s;
    }

    .feature-card:nth-child(6) {
      animation-delay: 1.2s;
    }

    .feature-card:hover {
      transform: translateY(-10px);
    }

    .feature-icon {
      font-size: 40px;
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    .feature-card h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .feature-card p {
      color: var(--light-text);
    }

    /* Stats Section */
    .stats {
      padding: 80px 0;
      url('{{ asset('assets/img/bg/about.jpg') }}') no-repeat center/cover;
      color: var(--white);
      text-align: center;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
    }

    .stat-card {
      padding: 30px 20px;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
    }

    .stat-card:nth-child(1) {
      animation-delay: 0.2s;
    }

    .stat-card:nth-child(2) {
      animation-delay: 0.4s;
    }

    .stat-card:nth-child(3) {
      animation-delay: 0.6s;
    }

    .stat-card:nth-child(4) {
      animation-delay: 0.8s;
    }

    .stat-number {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .stat-label {
      font-size: 18px;
      opacity: 0.9;
    }

    /* Testimonials */
    .testimonials {
      padding: 80px 0;
      background-color: var(--white);
    }

    .testimonial-slider {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }

    .testimonial {
      text-align: center;
      padding: 0 20px;
      display: none;
    }

    .testimonial.active {
      display: block;
      animation: fadeIn 0.5s ease-in-out;
    }

    .testimonial-content {
      font-size: 18px;
      font-style: italic;
      margin-bottom: 30px;
      color: var(--text-color);
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .author-image {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
    }

    .author-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .author-info h4 {
      font-weight: 600;
      margin-bottom: 5px;
    }

    .author-info p {
      color: var(--light-text);
      font-size: 14px;
    }

    .slider-controls {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }

    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #d1d5db;
      margin: 0 5px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .slider-dot.active {
      background-color: var(--primary-color);
    }

    /* Pricing Section */
    #pricing {
      scroll-margin-top: -180px;
      /* Matches header height */
    }

    .pricing-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1rem;

    }

    .pricing-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .pricing-header h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: var(--primary-color);
    }

    .pricing-header p {
      font-size: 1.2rem;
      color: var(--light-text);
      max-width: 700px;
      margin: 0 auto;
    }

    .highlight-badge {
      background-color: var(--primary-dark);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 50px;
      display: inline-block;
      margin-top: 1rem;
      font-weight: bold;
      font-size: 0.9rem;
    }

    .pricing-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
    }

    .pricing-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      padding: 2rem;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .pricing-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--primary-color);
    }

    .price {
      font-size: 2.5rem;
      font-weight: bold;
      margin: 1.5rem 0;
    }

    .price span {
      font-size: 1rem;
      color: var(--light-text);
      font-weight: normal;
    }

    .comparison {
      background-color: #f2f8f9;
      padding: 0.8rem;
      border-radius: 8px;
      margin: 1.5rem 0;
      font-size: 0.9rem;
    }

    .comparison .competitor-price {
      text-decoration: line-through;
      color: var(--light-text);
    }

    .savings-badge {
      background-color: cadetblue;
      color: white;
      padding: 0.3rem 0.6rem;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: bold;
      display: inline-block;
      margin-top: 0.5rem;
    }

    .pricing-container .features-pricing {
      margin: 2rem 0;
    }

    .pricing-container .features-pricing li {
      list-style-type: none;
      padding: 0.5rem 0;
      display: flex;
      align-items: center;
    }

    .pricing-container .features-pricing li:before {
      content: "✓";
      color: var(--primary-color);
      font-weight: bold;
      margin-right: 0.5rem;
    }

    .pricing-container .cta-button {
      display: block;
      width: 100%;
      padding: 1rem;
      border: none;
      border-radius: 8px;
      background-color: var(--primary-color);
      color: white;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-align: center;
      text-decoration: none;
      margin-top: 1.5rem;
    }

    .pricing-container .cta-button:hover {
      background-color: #3a99d4;
    }

    .unlimited-badge {
      background-color: #ff6b6b;
      color: white;
      padding: 0.3rem 0.6rem;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: bold;
      display: inline-block;
      margin-left: 0.5rem;
    }

    @media (max-width: 768px) {
      #pricing {
        scroll-margin-top: 150px;
        /* Larger offset for mobile */
      }

      .pricing-cards {
        flex-direction: column;
        align-items: center;
      }

      .pricing-card {
        max-width: 100%;
        width: 100%;
      }
    }

    /* FAQ Section */
    .faq {
      padding: 80px 0;
      background-color: var(--white);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background-color: var(--white);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: var(--shadow);
      overflow: hidden;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
    }

    .faq-item:nth-child(1) {
      animation-delay: 0.2s;
    }

    .faq-item:nth-child(2) {
      animation-delay: 0.4s;
    }

    .faq-item:nth-child(3) {
      animation-delay: 0.6s;
    }

    .faq-item:nth-child(4) {
      animation-delay: 0.8s;
    }

    .faq-item:nth-child(5) {
      animation-delay: 1.0s;
    }

    .faq-item:nth-child(6) {
      animation-delay: 1.2s;
    }

    .faq-question {
      padding: 20px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 500;
      transition: background-color 0.3s;
    }

    .faq-question:hover {
      background-color: #f5f7fa;
    }

    .faq-question i {
      transition: transform 0.3s;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    .faq-answer {
      padding: 0 30px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s ease;
    }

    .faq-item.active .faq-answer {
      padding: 0 30px 20px;
      max-height: 500px;
    }

    /* CTA Section */
    .cta-section {
      padding: 80px 0;
      url('{{ asset('assets/img/bg/about.jpg') }}') no-repeat center/cover;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .cta-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.1;
      background-image: radial-gradient(circle, white 1px, transparent 1px);
      background-size: 20px 20px;
      z-index: 1;
    }

    .cta-section .cta-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .cta-section .cta-description {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 40px;
      line-height: 1.6;
      opacity: 0.9;
    }

    .cta-section .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-section .cta-btn {
      display: inline-block;
      padding: 15px 35px;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 1.1rem;
    }

    .cta-section .btn-primary {
      background-color: white;
      color: cadetblue;
    }

    .cta-section .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .cta-section .btn-secondary {
      background-color: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .cta-section .btn-secondary:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-color: white;
      transform: translateY(-3px);
    }

    .cta-section .cta-features {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 60px;
      flex-wrap: wrap;
    }

    .cta-section .feature-item {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .cta-section .feature-icon {
      font-size: 1.5rem;
      color: white;
      margin-bottom: 0;
      background-color: var(--primary);
    }

    .cta-section .feature-text {
      text-align: left;
      font-size: 0.95rem;
      opacity: 0.9;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .cta-section .cta-title {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 768px) {
      .cta-section {
        padding: 80px 5%;
      }

      .cta-title {
        font-size: 2rem;
      }

      .cta-description {
        font-size: 1.1rem;
      }

      .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .cta-section .cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
      }
    }

    @media (max-width: 576px) {
      .cta-section {
        padding: 60px 5%;
      }

      .cta-title {
        font-size: 1.8rem;
      }

      .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }

      .cta-section .feature-item {
        justify-content: center;
      }
    }

  

    /* Responsive Styles */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 40px;
      }

      .stat-number {
        font-size: 36px;
      }

      .about-content {
        grid-template-columns: 1fr;
      }

      .about-image,
      .about-text {
        transform: none !important;
      }

      .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
      }
    }

    @media (max-width: 768px) {
      /* .nav-links {
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: var(--white);
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      box-shadow: var(--shadow);
      transform: translateY(-150%);
      transition: transform 0.3s ease-in-out;
  }

  .nav-links.active {
      transform: translateY(0);
  }

  .nav-links li {
      margin: 15px 0;
  }

  .mobile-menu-btn {
      display: block;
  } */

      .hero {
        padding: 10px 0 0px;
        background-attachment: scroll;
      }

      .hero h1 {
        font-size: 32px;
      }

      .hero p {
        font-size: 16px;
      }

      .typewriter-text {
        font-size: 16px;
        white-space: normal;
        border-right: none;
        animation: none;
      }

      .cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .section-title h2 {
        font-size: 28px;
      }

      .contact-container {
        grid-template-columns: 1fr;
      }

      .contact-form {
        padding: 30px;
      }

      .contact-image {
        order: -1;
      }
    }

    @media (max-width: 576px) {
      .hero {
        padding: 10px 0 0px;
      }

      .hero h1 {
        font-size: 26px;
      }

      .price {
        font-size: 36px;
      }

      .cta-section h2 {
        font-size: 28px;
      }

      .contact-form {
        padding: 20px;
      }

      .faq-question {
        padding: 15px 20px;
      }

      .faq-answer {
        padding: 0 20px;
      }

      .faq-item.active .faq-answer {
        padding: 0 20px 15px;
      }
    }

    .scrolling-text {
      width: 100%;
      overflow: hidden;
      background-image: -webkit-linear-gradient(1deg, #3847ef 0%, #99e9a5 100%);
      color: white;
      font-weight: bold;
    }

    .scrolling-text p {
      display: inline-block;
      padding: 0.75rem 0;
      white-space: nowrap;
      animation: scrollText 15s linear infinite;
    }

    @keyframes scrollText {
      0% {
        transform: translateX(100%);
      }

      100% {
        transform: translateX(-100%);
      }
    }

    /* Table row highlighting */
    .highlight-row {
      background-color: rgba(54, 145, 86, 0.15) !important;
      position: relative;
      transition: background-color 0.3s ease;
    }

    .highlight-row:after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 4px;
      height: 100%;
      background-color: var(--primary-color);
      animation: fadeIn 0.3s ease;
    }

    .highlight-cell {
      background-color: rgba(54, 145, 86, 0.1) !important;
      font-weight: 600 !important;
      transition: all 0.3s ease;
    }

    /* Pricing card highlighting */
    .highlight-card {
      box-shadow: 0 0 0 3px var(--primary-color) !important;
      position: relative;
      /* z-index: 10; */
      transition: box-shadow 0.3s ease;
    }

    @keyframes pulseCard {
      0% {
        box-shadow: 0 0 0 0 rgba(54, 145, 86, 0.4);
      }

      70% {
        box-shadow: 0 0 0 10px rgba(54, 145, 86, 0);
      }

      100% {
        box-shadow: 0 0 0 3px var(--primary-color);
      }
    }

    /* Fix for pro-tier border conflict */
    .highlight-card[style*="border: 2px solid var(--primary-color)"] {
      border: 1px solid #ddd !important;
    }

    #basic,
    #pro,
    #unlimited {
      scroll-margin-top: 100px;
    }
  