:root {
  --primary: #1E3A8A; /* Trust Blue */
  --primary-light: #3B82F6;
  --secondary: #0F172A;
  --text: #334155;
  --text-light: #64748B;
  --bg-color: #F8FAFC;
  --white: #FFFFFF;
  --success: #10B981;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-color);
  color: var(--text);
  line-height: 1.6;
}

/* Nav */
header {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-primary {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--primary-light);
}

/* Main */
main {
  margin-top: 80px;
  min-height: calc(100vh - 80px - 250px);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: #E2E8F0;
}

.cookie-banner .btn-primary {
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

/* Legal Pages */
.legal-container, .contact-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 3rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

h1, h2, h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.legal-container p, .legal-container ul {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.legal-container ul {
  padding-left: 1.5rem;
}

/* Footer (Crucial for Google Ads) */
footer {
  background: var(--secondary);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: #94A3B8;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.footer-col a {
  color: #94A3B8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--white);
}

.disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  color: #64748B;
  font-size: 0.85rem;
  text-align: center;
}

.dummy-warning {
  border-left: 3px solid #EF4444;
  padding-left: 10px;
  color: #EF4444 !important;
}

/* Misc Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
