    :root {
      --primary: #65ca9e;
      --primary-dark: #378168;
      --secondary: #7a8c88;
      --light: #f8fdfb;
      --dark: #153c30;
      --success: #3cbe6d;
      --warning: #f0b429;
      --danger: #e63946;
      }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      color: var(--dark);
      background-color: var(--light);
    }

    .ui.menu {
      border-radius: 0;
    }

    .ui.primary.button {
      background-color: var(--primary);
    }

    .ui.primary.button:hover {
      background-color: var(--primary-dark);
    }

    .hero-section {
      padding: 5rem 0;
      text-align: center;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: bold;
      color: var(--primary);
    }

    .stat-label {
      color: var(--secondary);
    }

    .features-section {
      padding: 5rem 0;
    }

    .pricing-section {
      padding: 5rem 0;
      background-color: var(--light);
    }

    .pricing-section .header {
      margin-bottom: 1em;
    }

    .logos > div {
      width: 5em;
      height: 5em;
      padding: 2em;
      margin: 10px;
      font-size: 1.5em;
      background: #f9f9f9 !important;
      cursor: pointer;
      border-radius: .5em;
    }

    .footer {
      /*background-color: var(--dark);
      color: white;*/
      padding: 2rem 0;
    }

    .legal > a {
      display: inline-block;
      margin-right: 5em;
      color: #3f3f3f;
    }

    .code-modal {
      font-family: monospace;
    }

    /* Custom checklist styling */
    .feature-list {
      list-style-type: none;
      padding-left: 1.5rem;
    }

    .feature-list li {
      margin-bottom: 1rem;
      position: relative;
    }

    .feature-list li:before {
      content: "✓";
      color: var(--success);
      position: absolute;
      left: -1.5rem;
    }

    /* Toggle for AOS animations */
    .aos-toggle {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    /* Additional customizations for Fomantic UI */
    .ui.card {
      height: 100%;
    }

    .ui.vertical.stripe {
      padding: 4rem 0;
    }

    .ui.vertical.stripe:nth-child(even) {
      background-color: #f9fafb;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--primary);
    }

    .hero-heading {
      font-size: 2.5rem;
      max-width: 900px;
      margin: 0 auto 1.5rem;
    }

    .hero-subheading {
      max-width: 700px;
      margin: 0 auto 2rem;
      font-weight: normal;
      color: var(--secondary);
    }
