/* =================================================================
   Legal Page Styles for MESASIGHT
   This file styles the Impressum, Privacy, and Datenschutz pages.
================================================================= */

/* Import the color variables and base styles from the main stylesheet */
/* This assumes you might create a main_style.css, but for now we'll redefine */
:root {
  --mes-blue: #0A4D68;
  --mes-teal: #088395;
  --mes-light-bg: #F7FAFC;
  --mes-dark-bg: #03001C;
  --mes-text-dark: #1A202C;
  --mes-text-light: #4A5568;
  --mes-accent: #05BFDB;

  --bs-primary: var(--mes-teal);
  --bs-body-bg: var(--mes-light-bg);
  --bs-body-color: var(--mes-text-dark);
  --bs-body-font-family: 'Montserrat', sans-serif;
}

body {
  padding-top: 100px; /* Extra padding for the fixed navbar */
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bs-body-bg);
}

/* --- Content Section --- */
.legal-content-section {
  padding: 4rem 0 6rem 0; /* Top and bottom padding */
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.07);
  margin-bottom: 6rem;
}

.legal-content-section h1 {
  font-weight: 700;
  color: var(--mes-blue);
  letter-spacing: -0.5px;
  margin-bottom: 2rem;
}

.legal-content-section h3 {
  font-weight: 700;
  color: var(--mes-blue);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-content-section p,
.legal-content-section li {
  color: var(--mes-text-light);
}

.legal-content-section a {
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 600;
}

.legal-content-section a:hover {
    text-decoration: underline;
}

/* --- Footer --- */
.main-footer {
  background-color: #E2E8F0;
  color: var(--mes-text-light);
  padding: 3rem 0;
  font-size: 0.9rem;
}
.main-footer a {
    color: var(--mes-text-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.main-footer a:hover {
    color: var(--bs-primary);
    text-decoration: underline;
}