.saving-account {
    padding: 60px 20px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .saving-account__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
  }
  
  .saving-account__title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
  }
  
  .saving-account__description {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
  }
  
  .text-primary-span {
    color: #00A0FA;
    font-style: italic;
  }

  .text-primary-span-2 {
    color: #00A0FA;
    font-size: 46px;
    font-weight: 600;
    font-style: italic;
  }
  
  .saving-account__content {
    display: flex;
    gap: 60px;
    align-items: center;
  }
  
  .saving-account__image-wrapper {
    flex: 1;
    position: relative;
  }
  
  .saving-account__image {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  
  .floating-label {
    position: absolute;
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .setup-complete {
    top: 40px;
    left: -20px;
    background: #fff;
    color: #000000;
  }
  
  .icon-check {
    background: #22C55E;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }
  
  .zero-balance {
    bottom: 40px;
    right: -20px;
    background: #fff;
    color: #000000;
  }
  
  .icon-wallet {
    font-size: 16px;
  }
  
  .saving-account__features {
    flex: 1;
  }
  
  .features__title {
    font-size: 46px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 400;
  }
  
  .features__description {
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
  }
  
  .features__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .features__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
  }
  
  .check-circle {
    width: 24px;
    height: 24px;
    background: #E8FFF3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22C55E;
  }
  
  .check-circle svg {
    width: 14px;
    height: 14px;
  }
  
  /* Animations */
  @keyframes floatIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .floating-label {
    animation: floatIn 0.6s ease-out forwards;
  }
  
  .setup-complete {
    animation-delay: 0.3s;
  }
  
  .zero-balance {
    animation-delay: 0.6s;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .saving-account {
      padding: 40px 20px;
    }
  
    .saving-account__header {
      margin-bottom: 40px;
    }
  
    .saving-account__title {
      font-size: 32px;
    }
  
    .saving-account__content {
      flex-direction: column;
      gap: 40px;
    }
  
    .floating-label {
      transform: scale(0.9);
    }
  
    .setup-complete {
      top: 20px;
      left: 0;
    }
  
    .zero-balance {
      bottom: 20px;
      right: 0;
    }
  
    .features__title {
      font-size: 28px;
    }

    .text-primary-span-2{
        font-size: 28px;
    }
  }


  @media (max-width: 460px) {
    .setup-complete{
            display: none;
    }

    .zero-balance{
        display: none;
    }
  }