 /* ── Banner ── */
    .help-banner {
      display: flex;
      min-height: 300px;
      overflow: hidden;
      position: relative;
    }

    /* ── Left: black text side ── */
    .help-text-side {
      position: relative;
      flex: 0 0 48%;
      max-width: 48%;
      background: #000;
      display: flex;
      align-items: center;
      padding: 50px 48px 50px 60px;
      z-index: 2;
    }

    /* Diagonal clip on right edge */
    .help-text-side::after {
      content: '';
      position: absolute;
      top: 0;
      right: -80px;
      width: 160px;
      height: 100%;
      background: #000;
      clip-path: polygon(0 0, 40% 0, 100% 100%, 0 100%);
      z-index: 1;
    }

    .help-text-side .inner {
      position: relative;
      z-index: 2;
    }

    .help-text-side h2 {
      font-size: 1.9rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .help-text-side p {
      font-size: 0.92rem;
      color: #ccc;
      line-height: 1.7;
      margin-bottom: 32px;
    }

    .btn-help {
      display: inline-block;
      border: 2px solid #fff;
      color: #fff;
      background: transparent;
      border-radius: 50px;
      padding: 11px 32px;
      font-size: 0.9rem;
      font-weight: 600;
      font-family: 'Sora', sans-serif;
      text-decoration: none;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .btn-help:hover {
      background: #7c3aed;
      border-color: #7c3aed;
      color: #fff;
    }

    /* ── Right: image side ── */
    .help-image-side {
      flex: 1;
      position: relative;
      overflow: hidden;
    }

    .help-image-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .help-banner {
        flex-direction: column;
      }

      .help-text-side {
        flex: none;
        max-width: 100%;
        padding: 44px 28px;
        clip-path: none;
      }

      .help-text-side::after {
        display: none;
      }

      .help-text-side h2 {
        font-size: 1.5rem;
      }

      .help-image-side {
        min-height: 220px;
      }
    }

    @media (max-width: 480px) {
      .help-text-side h2 {
        font-size: 1.25rem;
      }

      .help-image-side {
        min-height: 180px;
      }
    }
 /* ── Main Footer ── */
    .site-footer {
      background: #fff;
      padding: 60px 0 40px;
      border-top: 1px solid #eee;
    }

    .footer-col h6 {
      font-weight: 700;
      font-size: 1rem;
      color: #111;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .footer-col p,
    .footer-col address {
      font-size: 0.875rem;
      color: #333;
      line-height: 2;
      font-style: normal;
      margin-bottom: 0;
      text-transform: uppercase;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      font-size: 0.875rem;
      color: #333;
      text-decoration: none;
      transition: color 0.2s;
      text-transform: uppercase;
    }

    .footer-col ul li a:hover {
      color: #7c3aed;
    }

    /* Social icons */
    .social-icons {
      display: flex;
      gap: 14px;
      margin-top: 20px;
    }

    .social-icons a {
      color: #111;
      font-size: 1.1rem;
      transition: color 0.2s;
    }

    .social-icons a:hover {
      color: #7c3aed;
    }

    /* ── Bottom bar ── */
    .footer-bottom {
      border-top: 1px solid #e5e5e5;
      padding: 32px 0 20px;
      background: #405f46;
    }

    .footer-bottom p {
      font-size: 0.82rem;
      color: #e2dfdf;
      margin-bottom: 20px;
      text-align: center;
    }

  

    /* Responsive */
    @media (max-width: 767px) {
      .footer-col {
        margin-bottom: 32px;
      }

      .site-footer {
        padding: 40px 0 20px;
      }
    }

    /* Double Column Footer List */
    .footer-col ul.footer-double-col {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px 20px;
      padding-left: 0;
      list-style: none;
      margin: 0;
    }
    @media (max-width: 575px) {
      .footer-col ul.footer-double-col {
        grid-template-columns: 1fr;
      }
    }