/* ==========================================================================
   Page Hero Header Elements Overhaul
   ========================================================================== */
.page-hero {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.page-hero-image {
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1486911278844-a81c5267e227?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 55%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  text-align: center;
}

.hero-title {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.title-accent-line {
  width: 50px;
  height: 4px;
  background-color: #f59e0b;
  border-radius: 2px;
}

/* ==========================================================================
   Main Core Content Layout Design System
   ========================================================================== */
.legal-content-section {
  background-color: #f1f5f9;
  padding: 80px 0;
}

.container-inner {
  max-width: 900px; /* Kept narrow for premium readability profiles */
  margin: 0 auto;
  padding: 0 24px;
}

.legal-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 45px 50px;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02), 0 10px 15px -3px rgba(15, 23, 42, 0.04);
}

.legal-block {
  width: 100%;
}

/* Section Headings */
.block-title,
.block-subtitle {
  font-family: 'PT Sans Narrow', sans-serif;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.block-title { font-size: 1.75rem; }
.block-subtitle { font-size: 1.4rem; }

.block-title i,
.block-subtitle i {
  color: #1d3d8c;
}

/* Typography & Links elements */
.legal-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 16px;
}
.legal-text:last-child { margin-bottom: 0; }
.legal-text.font-bold { font-weight: 700; color: #0f172a; }

.legal-address {
  font-style: normal;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 20px;
}

.legal-meta-links p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 8px;
}
.legal-meta-links p:last-child { margin-bottom: 0; }

.legal-meta-links strong {
  color: #0f172a;
  display: inline-block;
  width: 90px;
}

.legal-meta-links a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.legal-meta-links a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.legal-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 40px 0;
}

/* Decorative Info Accent Box Component */
.legal-notice-box {
  background-color: #f8fafc;
  border-left: 4px solid #1d3d8c;
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.legal-notice-box i {
  color: #1d3d8c;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.legal-notice-box .legal-text {
  color: #0f172a;
  font-weight: 700;
}

/* ==========================================================================
   Responsive Adaptations Media Queries
   ========================================================================== */
@media (max-width: 768px) {
  .legal-content-section {
    padding: 50px 0;
  }
  .legal-card {
    padding: 32px 24px;
  }
  .block-title { font-size: 1.5rem; }
  .block-subtitle { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .page-hero {
    height: 200px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .legal-notice-box {
    flex-direction: column;
    gap: 8px;
  }
}