/* Base styles */
:root {
    --primary-blue: #00A0FA;
    --text-dark: #333333;
    --text-gray: #666666;
    --background-light: #F5F7FA;
  }
  
  .transfer-section {
    padding: 4rem 1rem;
    background-color: var(--background-light);
  }
  
  .container {
    max-width: 1532px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Content styles */
  .content {
    max-width: 580px;
    margin-bottom: 0.3rem;
  }
  
  .title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .highlight {
    color: var(--primary-blue);
  }
  
  .description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
  }
  
  /* Transfer diagram styles */
  .transfer-diagram {
    display: none; /* Hidden on mobile */
    position: relative;
    margin-top: -2rem;
  }
  
  .bank-node {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .bank-ab {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
  }
  
  .bank-nibss {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 150px;
  }
  
  .nibss-text {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
  }
  
  .bank-grid {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 400px;
  }
  
  .bank-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .bank-item:hover {
    transform: translateY(-5px);
  }
  
  .bank-item img {
    max-width: 100%;
    height: auto;
  }
  
  /* Connector lines */
  .transfer-diagram::before,
  .transfer-diagram::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 2px;
    background-color: var(--primary-blue);
  }
  
  .transfer-diagram::before {
    left: 220px;
    width: calc(50% - 330px);
  }
  
  .transfer-diagram::after {
    right: 420px;
    width: calc(50% - 330px);
  }
  
  /* Responsive styles */
  @media (min-width: 768px) {
    .title {
      font-size: 2.5rem;
    }
  
    .transfer-diagram {
      display: block;
    }
  }
  
  @media (min-width: 1024px) {
    .title {
      font-size: 3rem;
    }
  
    .container {
      padding: 0 40px;
    }
  }
  
  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .content {
    animation: fadeIn 0.8s ease-out;
  }
  
  .bank-node,
  .bank-item {
    animation: fadeIn 0.8s ease-out forwards;
  }
  
  .bank-item:nth-child(1) { animation-delay: 0.1s; }
  .bank-item:nth-child(2) { animation-delay: 0.2s; }
  .bank-item:nth-child(3) { animation-delay: 0.3s; }
  .bank-item:nth-child(4) { animation-delay: 0.4s; }
  .bank-item:nth-child(5) { animation-delay: 0.5s; }
  .bank-item:nth-child(6) { animation-delay: 0.6s; }
  .bank-item:nth-child(7) { animation-delay: 0.7s; }