.page-header {
  background: url('../../images/development/Los-Santos.png') center/cover no-repeat;
  color: white;
  padding: 80px 0 60px;
  position: relative;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  z-index: 0;
}

.page-header h1,
.page-header p {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 20px;
  opacity: 0.9;
}

.legal-content {
  padding: 80px 0;
  background: white;
}

.legal-intro {
  background: var(--color-bg-light);
  border-left: 4px solid var(--color-primary);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  margin-bottom: 60px;
}

.legal-intro p {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 16px;
  margin: 0;
}

.legal-section {
  margin-bottom: 56px;
}

.legal-section:last-of-type {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
}

.legal-section p {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 16px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.legal-section a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.info-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.info-item .label {
  font-weight: 600;
  color: var(--color-text);
  min-width: 200px;
  flex-shrink: 0;
}

.info-item .value {
  color: var(--color-text-light);
  line-height: 1.6;
}

.info-item .value a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.info-item .value a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.legal-update {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.legal-update p {
  color: var(--color-text-light);
  font-size: 14px;
  font-style: italic;
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 0 40px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .page-header p {
    font-size: 16px;
  }

  .legal-content {
    padding: 60px 0;
  }

  .legal-intro {
    padding: 20px 24px;
    margin-bottom: 40px;
  }

  .legal-section {
    margin-bottom: 40px;
  }

  .legal-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .legal-section p {
    font-size: 15px;
  }

  .info-item {
    flex-direction: column;
    gap: 8px;
    padding: 14px;
  }

  .info-item .label {
    min-width: auto;
    font-size: 15px;
  }

  .info-item .value {
    font-size: 15px;
  }

  .legal-update {
    margin-top: 40px;
    padding-top: 24px;
  }
}