
  
  .pricing-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .pricing-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    transition: all 0.3s ease;
    /* align-items: ; */
  }
  
  /* Add this hover effect */
  .pricing-card:hover {
    border: 2px solid #ff4040; /* Orange outline on hover */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12); /* Lift effect */
    transform: translateY(-4px);
    transition: all 0.3s ease;
  }
  
  .pricing-card.popular {
    border: 2px solid #323268;
  }
  
  .plan-name {
    font-size: 22px;
    font-weight: 800;
    color: #323268;
    margin-bottom: 6px;
    text-transform: none;
  }
  
  .plan-price {
    font-size: 30px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
  }
  
  .plan-subtitle,
  .sub-note {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 12px;
    font-weight: 500;
  }
  
  .highlight-box {
    background-color: none;
    color: #6b7280;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    max-width: 180px;
    width: 100%;
    align-self: center;
    /* width: fit-content; */
    /* min-width: 220px; */
  }
  
  .features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 16px;
    color: #1f2937;
  }
  
  .features li {
    padding-left: 1.2em;
    margin-bottom: 15px;
    position: relative;
    text-align: left;
    font-weight: 500;
  }
  
  .features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
  }
  
  .primary-button {
    background-color: #fe6652;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: auto;
    width: 100%;
    height: 43px;
  }
  
  .primary-button:hover {
    background-color: #323268;
  }
  
  .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #e11d48;
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 16px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  



 