.interest-rates {
    padding: 80px 0;
    margin: 0px 20px;
    border-radius: 40px;
    background-color: #F8FAFC;
    overflow: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .interest-rates__content {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  
  .interest-rates__text {
    flex: 1;
  }
  
  .interest-rates__title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 600;
    animation: slideInLeft 0.8s ease-out;
  }
  
  .text-primary {
    background: linear-gradient(135deg, #00A0FA, #0077ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
  }
  
  .interest-rates__description {
    color: #64748B;
    line-height: 1.7;
    font-size: 16px;
    max-width: 500px;
    animation: fadeIn 0.8s ease-out 0.2s both;
  }
  
  .interest-rates__image-container {
    flex: 1;
    position: relative;
  }
  
  .image-wrapper {
    position: relative;
    animation: floatUpDown 6s ease-in-out infinite;
  }
  
  .main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    animation: scaleIn 0.8s ease-out;
  }
  
  .floating-label {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
  }
  
  .attractive-rates {
    top: 40px;
    right: -20px;
    color: #FF8A65;
    animation: floatIn 0.6s ease-out 0.6s forwards;
  }
  
  .non-forfeit {
    bottom: 60px;
    left: -20px;
    color: #9C27B0;
    animation: floatIn 0.6s ease-out 0.9s forwards;
  }
  
  .icon-arrow, .icon-diamond {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
  
  .icon-arrow {
    background-color: rgba(255, 138, 101, 0.1);
  }
  
  .icon-diamond {
    background-color: rgba(156, 39, 176, 0.1);
  }
  
  /* Animations */
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes floatIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  /* Hover Effects */
  .floating-label {
    transition: transform 0.3s ease;
  }
  
  .floating-label:hover {
    transform: translateY(-5px);
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .interest-rates {
      padding: 60px 0;
      margin: 0px 0px;
    }
  
    .interest-rates__content {
      flex-direction: column;
      gap: 40px;
    }
  
    .interest-rates__title {
      font-size: 36px;
      text-align: left;
    }
  
    .interest-rates__description {
      text-align: left;
    }
  
    .floating-label {
      padding: 8px 16px;
      font-size: 12px;
    }
  
    .attractive-rates {
      top: 20px;
      right: 0;
    }
  
    .non-forfeit {
      bottom: 40px;
      left: 0;
    }
  
    .icon-arrow, .icon-diamond {
      width: 28px;
      height: 28px;
    }
  }
  
  /* Animation Performance */
  @media (prefers-reduced-motion: reduce) {
    .floating-label,
    .interest-rates__title,
    .interest-rates__description,
    .image-wrapper {
      animation: none;
    }
  }