  .pricing-section {
    background-color: #031119;
    color: #e0e0e0;
    padding: 100px 0;
    min-height: 100vh;
    height: auto;
  }

  .main-titles {
    font-family: "Protest Revolution", sans-serif;
    color: #ffffff;
    font-weight: 500;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
  }

  .main-titles::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ff007f;
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f;
  }

  .alert-neon {
    background: rgba(255, 0, 127, 0.05);
    border-left: 4px solid #ff007f;
    padding: 25px;
    border-radius: 0 15px 15px 0;
    margin-bottom: 40px;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.1);
  }
  
  .alert-neon h4 {
    color: #ff007f;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .alert-neon p {
    margin: 0;
    font-size: 1.1rem;
    color: #b0b8bc;
  }

  .factors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
  }

  .factor-pill {
    background: #051b26;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .factor-pill:hover {
    border-color: #ff007f;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
    transform: translateY(-3px);
  }

  .factor-pill i {
    color: #ff007f;
  }

  .pricing-text-block {
    margin-bottom: 50px;
  }
  
  .pricing-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 20px;
  }

  .price-list-container {
    background: #000000;
    padding: 40px;
    border-radius: 20px;
    box-shadow: inset 0 0 20px rgba(255, 0, 127, 0.05);
    border: 1px solid rgba(255, 0, 127, 0.1);
    margin-bottom: 50px;
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    transition: 0.3s;
  }

  .price-row:last-child {
    border-bottom: none;
  }

  .price-row:hover {
    background: rgba(255, 0, 127, 0.02);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
  }

  .price-info {
    flex: 1;
    padding-right: 20px;
  }

  .price-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
  }

  .price-desc {
    font-size: 0.95rem;
    color: #889297;
    line-height: 1.5;
  }

  .price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff007f;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
  }