.home-banner-section {
    background: linear-gradient(to right, #c8e6f0, #fefefe);
    min-height: 320px;
    border-radius: var(--border-radius);
    position: relative;
  }
  
  .banner-content-box {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: #fff;
    border-radius: var(--border-radius);
    z-index: 2;
    position: relative;
  }
  
  .img-banner-floating {
    position: absolute;
    bottom: 0;
    right: 12px;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
  }

  @media (max-width: 768px) {
    .img-banner-floating {
      display: none;
    }
  }
  

  .banner-account-section {
    background: linear-gradient(to right, #c8e6f0, #fefefe);
    border-radius: var(--border-radius);
    position: relative;
    min-height: 320px;
  }
  
  .banner-account-content {
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-radius: var(--border-radius);
    z-index: 2;
    position: relative;
  }
  
  .img-banner-account {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 768px) {
    .img-banner-account {
      max-width: 90%;
      margin-top: 20px;
    }
  }
  

  .banner-content-box {
    position: relative;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden; 
  }

  .banner-content-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(
      120deg,
      rgba(200, 255, 255, 0.05),
      rgba(180, 240, 255, 0.3),
      rgba(200, 255, 255, 0.05)
    );
    border-radius: inherit;
    z-index: 3;
    animation: shine-border 6s linear infinite;
    background-size: 200% 200%;
    pointer-events: none;
  }

  .banner-content-box {
    overflow: hidden;
    position: relative;
    z-index: 1; 
  }
  
  .banner-content-box > * {
    position: relative;
    z-index: 4; 
  }

  @keyframes shine-border {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }
  

  .banner-category-section {
    background: linear-gradient(to right, #c8e6f0, #fefefe);
    border-radius: var(--border-radius);
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
  }
  
  .category-description {
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
  }
  