
    :root {
      --primary-gradient: linear-gradient(to right, #7c3aed, #f97316);
      --dot-color: #f97316;
      --text-color: #1f2937;
      /* --shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
      --shadow: 0 5px 15px #aaa;
    }

    #pricing.section {
      color: var(--default-color);
      background-color: var(--background-color);
      padding:2px 0px 2px;
      scroll-margin-top: 90px;
      overflow: clip;
    }

    .pricing-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 150px;
      padding: 60px 20px;
    }

    .pricing-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 300px;
      flex: 1;
    }

    .pricing-box {
      cursor: pointer;
      background: white;
      border: 3px solid;
      border-image: linear-gradient(to bottom right, #7c3aed, #f97316) 1;
      border-radius: 16px;
      padding: 20px;
      width: 100%;
      /* min-height: 550px; */
      min-height: 486px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      position: relative;
    }

    .pricing-box:hover {
        transform: scale(1.05);
    }


    .header-card {
      background: white;
      border-radius: 8px;
      padding: 16px 20px;
      box-shadow: var(--shadow);
      text-align: center;
      margin-top: -50px;
      margin-bottom: 20px;
      width: 90%;
      z-index: 1;
    }

    .header-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 4px;
      color: var(--text-color);
    }

    .header-card h4 {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      color: #ec4899;
    }

    .header-card h4 span {
      color: #f97316;
      font-weight: 400;
    }

    .header-card p {
      font-size: 12.5px;
      color: #333;
      margin: 6px 0 0;
      line-height: 1.4;
    }

    .features {
      margin-top: 10px;
      list-style: none;
      padding: 0;
      width: 100%;
    }

    .features li {
      font-size: 14px;
      margin: 14px 0;
      display: flex;
      align-items: center;
      font-weight: 500;
      color: var(--text-color);
    }

    .features li::before {
      content: '●';
      color: var(--dot-color);
      font-size: 18px;
      margin-right: 10px;
    }

    .register-btn {
      margin-top: 20px;
      padding: 12px 30px;
      background: var(--primary-gradient);
      color: white;
      font-weight: bold;
      font-size: 16px;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: var(--shadow);
    }

    .register-btn:hover {
      opacity: 0.9;
    }

    .register-btn svg {
      width: 18px;
      height: 18px;
      stroke: white;
      stroke-width: 2.5;
    }
