   /* Pricing Specific Styles */
      :root {
        --accent-green: #485c11;
        --border-radius: 20px;
        --font-serif: "Crimson Text", serif;
        --font-sans: "DM Sans", sans-serif;
      }

      body {
        background-color: #fafafa;
      }

      .pricing-section {
        padding: 80px 20px;
        max-width: 1200px;
        margin: 0 auto;
      }

      .section-title {
        text-align: center;
        margin-bottom: 40px;
        margin-top: 60px;
      }

      .section-title h2 {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        margin-bottom: 10px;
      }

      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        justify-content: center;
      }

      .price-card {
        background: #fff;
        padding: 40px;
        border-radius: var(--border-radius);
        border: 1px solid #eee;
        position: relative;
        display: flex;
        flex-direction: column;
        transition: transform 0.2s;
      }

      .price-card:hover {
        transform: translateY(-5px);
      }

      .price-card.featured {
        border: 2px solid var(--accent-green);
        box-shadow: 0 10px 30px rgba(72, 92, 17, 0.1);
      }

      .price-card.dark {
        background: #1a1a1a;
        color: white;
        border: none;
      }

      .price-card.offline {
        background: #222;
        color: #fff;
        border: none;
      }

      .plan-name {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        margin-bottom: 10px;
      }

      .plan-desc {
        font-size: 0.95rem;
        color: #6f6f6f;
        margin-bottom: 20px;
        min-height: 40px;
      }

      .dark .plan-desc,
      .offline .plan-desc {
        color: #aaa;
      }

      .price-tag {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--accent-green);
        margin-bottom: 5px;
        font-family: var(--font-serif);
        line-height: 1;
      }

      .dark .price-tag,
      .offline .price-tag {
        color: #fff;
      }

      .price-period {
        font-size: 1rem;
        color: #6f6f6f;
        font-weight: 400;
        font-family: var(--font-sans);
        margin-left: 5px;
      }
      .dark .price-period,
      .offline .price-period {
        color: #ccc;
      }

      .price-sub {
        font-size: 0.95rem;
        color: #6f6f6f;
        margin-bottom: 25px;
        font-family: var(--font-sans);
        font-style: italic;
      }

      .dark .price-sub,
      .offline .price-sub {
        color: #888;
      }

      .checklist {
        list-style: none;
        margin-bottom: 40px;
        flex-grow: 1;
      }

      .checklist li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
      }

      .tick {
        color: var(--accent-green);
        margin-right: 10px;
        font-weight: bold;
      }

      .dark .tick,
      .offline .tick {
        color: #fff;
      }

      .cross {
        color: #ccc;
        margin-right: 10px;
        font-weight: bold;
      }

      .cta-btn {
        display: block;
        width: 100%;
        background-color: var(--accent-green);
        color: white;
        padding: 15px 0;
        border-radius: 50px;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        transition: opacity 0.2s;
      }

      .cta-btn.secondary {
        background-color: transparent;
        border: 2px solid var(--accent-green);
        color: var(--accent-green);
      }

      .cta-btn.white {
        background-color: #fff;
        color: #000;
      }

      .cta-btn.offline-btn {
        background-color: #fff;
        color: #000;
      }

      .cta-btn:hover {
        opacity: 0.9;
      }

      /* Currency Dropdown */
      .currency-wrapper {
        position: fixed;
        top: 25px;
        right: 30px;
        z-index: 1001;
        margin-bottom: 40px;
        margin-top: 60px;
      }

      .currency-select {
        padding: 8px 15px;
        margin: 2px;
        border-radius: 20px;
        border: 1px solid #ddd;
        font-family: var(--font-sans);
        font-weight: bold;
        background: white;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        outline: none;
      }

      /* Header adjustments */
      header {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        padding: 15px 30px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        gap: 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        width: max-content;
        border: 1px solid #eee;
      }

      @media (max-width: 768px) {
        header {
          width: 80%;
          justify-content: space-between;
          padding: 10px 20px;
          left: 45%;
        }
        .nav-link {
          display: none;
        }
      }
      @media (max-width: 768px) {
        .currency-wrapper {
          position: static;
          margin-top: 20px;
          margin-bottom: 10px;
          display: flex;
          justify-content: center;
        }

        .currency-select {
          width: auto;
          padding: 10px 16px;
          font-size: 0.9rem;
        }
      }