.footer-bottom-wrapper {
   color: #eae1e1;
    padding: 12px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom-wrapper .footer-text,
  .footer-bottom-wrapper .footer-powered {
    margin: 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .footer-bottom-wrapper a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
  }

  .footer-bottom-wrapper a:hover {
    text-decoration: underline;
  }

  /* Mobile view adjustments */
  @media (max-width: 576px) {
    .footer-bottom-wrapper {
      flex-direction: column;
      gap: 10px;
    }
  }
  
  /* =====  Privacy Policy Page ===== */
      .privacy-page {
       
        padding: 0;
        background-color: #f7f7f7;
        color: #333;
        line-height: 1.6;
      }

      .privacy-page .policy-container {
        max-width: 1100px;
        margin: 40px auto;
        background: #fff;
        padding: 30px 40px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      }

      .privacy-page h1 {
        color: #000;
        font-size: 26px;
        text-align: center;
        margin-bottom: 25px;
      }

      .privacy-page h2 {
        color: #000;
        margin-top: 25px;
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: bold;
        text-align: left;
      }

      .privacy-page p,
      .privacy-page li {
        font-size: 15px;
        margin-bottom: 12px;
      }

      .privacy-page ul {
        padding-left: 20px;
        margin-top: 5px;
      }

      .privacy-page a {
       
        text-decoration: none;
        font-weight: 500;
      }

     

      .privacy-page strong {
        color: #000;
        font-weight: 600;
      }

      /* Footer (Optional) */
      .privacy-page .custom-footer {
        background-color: rgb(165, 163, 152);
        padding: 12px 0;
        font-size: 15px;
        color: #000;
      }

      .privacy-page .custom-footer .custom-container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 10px;
      }

      .privacy-page .custom-footer .custom-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        gap: 5px;
      }

      .privacy-page .custom-footer a {
        color: #000;
        text-decoration: none;
        font-weight: 600;
      }

      .privacy-page .custom-footer a:hover {
        text-decoration: underline;
      }

      /* Mobile Responsive */
      @media (max-width: 600px) {
        .privacy-page .policy-container {
          padding: 20px;
          margin: 20px;
        }
        .privacy-page h1 {
          font-size: 22px;
        }
        .privacy-page p,
        .privacy-page li {
          font-size: 14px;
        }
        .privacy-page .custom-footer .custom-row {
          flex-direction: column;
          text-align: center;
        }
      }
       /* terms grid */
      .custom-footer {
  background-color: #a4a0a0;
  padding: 15px;
  text-align: left;
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.custom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.custom-links a {
  color: #2a2c2e;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.custom-links a:hover {
  color: #3d4247;
  text-decoration: underline;
}

/* ✅ Mobile View (Stay in flex row, side by side) */
@media (max-width: 576px) {
  .custom-footer {
    text-align: left;
    padding: 15px 35px;
  }

  .custom-links {
    flex-direction: row; /* keep them side by side */
    justify-content: center; /* center horizontally */
    gap: 12px; /* reduce gap for small screens */
  }

  .custom-links a {
    font-size: 14px;
  }
}