/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 27 2026 | 07:10:29 */
  .fin-banner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;

    padding: 32px 36px;

    background: #ffffff;
    border: 1px solid #e3e6eb;
    border-radius: 20px;

    color: #0f172a;
	box-sizing: border-box;
  }

  .fin-logo {
    width: 115px;
    height: 115px;
    border-radius: 16px;

    background: #f4f5f7;
    border: 1px solid #e3e6eb;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    overflow: hidden;
  }

  .fin-logo img {
    width: 70%;
    height: auto;
    object-fit: contain;
  }

  .fin-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }

  .fin-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #64748b;
    font-weight: 600;
  }

  .fin-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0f172a;
  }

  .fin-title span {
    color: #2563eb; /* fintech blue */
  }

  .fin-sub {
    font-size: 0.97rem;
    color: #475569;
    max-width: 50ch;
  }

  .fin-btn {
    margin-top: 12px;
    display: inline-block;

    background: #2563eb;
    color: #ffffff;

    padding: 12px 28px;
    border-radius: 10px;
    border: none;

    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;

    transition: background 0.2s ease;
	width: fit-content;
  }

  .fin-btn:hover {
    background: #1f4ebd;
  }

  @media (max-width: 850px) {
    .fin-banner {
      flex-direction: column;
      text-align: center;
      padding: 26px;
    }

    .fin-logo {
      width: 130px;
      height: 130px;
    }

    .fin-btn {
      width: 100%;
      max-width: 320px;
      align-self: center;
    }
  }