/* Privacy Policy Specific Styles */
.close-return-link {
  color: rgba(254, 130, 21, 0.6);
}

/* 1. Page Header & Content (Unique to this page) */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.logo-inline {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.subtitle {
  color: #4b5563;
  font-size: 16px;
  margin: 1.3rem 0 0.6rem;
}

.mobile-br {
    display: none !important;
    /* or 'block', depending on desired behavior */
  }

/* ==========================================================================
   SPECIFIC TABLET & IPAD QUERIES (REFINED)
   ========================================================================== */

/* 1. TABLET PORTRAIT (768px - 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .logo-inline {
    height: 35px;
  }
  .mobile-br {
    display: inline !important;
  }
}

/* 2. TABLET LANDSCAPE (768px - 1199px) */
@media screen and (min-width: 768px) and (max-width: 1199px) and (orientation: landscape) {
  .logo-inline {
    height: 32px;
  }
}

/* 3. LARGE TABLET PORTRAIT (1024px - 1194px) */
@media screen and (min-width: 1024px) and (max-width: 1194px) and (orientation: portrait) {
  .logo-inline {
    height: 45px;
  }
  .mobile-br {
    display: inline !important;
  }
}

/* 4. LARGE TABLET LANDSCAPE (1200px - 1366px) */
@media screen and (min-width: 1200px) and (max-width: 1366px) and (orientation: landscape) {
  .logo-inline {
    height: 40px;
  }
}

/* MOBILE PORTRAIT */
@media screen and (max-width: 767px) and (orientation: portrait) {
  .page-header {
    margin-bottom: 1rem;
  }

  .logo-inline {
    height: 30px;
  }
  .subtitle {
    margin: 2.3rem 0 0.6rem !important;
  }
  .mobile-br {
    display: inline !important;
    /* or 'block', depending on desired behavior */
  }
}

/* MOBILE LANDSCAPE */
@media screen and (max-width: 932px) and (orientation: landscape) {
  .page-header {
    margin-bottom: 0.75rem;
    gap: 1rem;
  }

  .logo-inline {
    height: 30px;
  }
}
