/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 06 2025 | 11:09:34 */
  .promo-banner {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #222;
    font-family: "Inter", Arial, sans-serif;
    box-sizing: border-box;
  }

  .promo-content {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .promo-logo {
    width: 150px;
    height: 42px;
    object-fit: contain;
    display: block;
  }

  .promo-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .promo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a0a0a;
  }

  .promo-subtitle {
    color: #0077cc;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .promo-btn {
    background: linear-gradient(135deg, #2dd16f, #21b55e);
    color: #fff;
    padding: 12px 26px;
    border: none;
    border-radius: 8px;
    font-size: 0.98rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }

  .promo-btn:hover {
    background: linear-gradient(135deg, #25b361, #19974e);
    transform: translateY(-1px);
  }

  @media (max-width: 720px) {
    .promo-banner {
      flex-direction: column;
      gap: 14px;
      padding: 16px;
      text-align: center;
    }
    .promo-content {
      flex-direction: column;
      gap: 10px;
    }
  }