/* ImmoTracker SEO Pages - Shared Styles */
:root {
  --navy: #1e3a5f;
  --coral: #ff6b6b;
  --light-bg: #f8f9fa;
  --text-primary: #2c3e50;
  --text-secondary: #546e7a;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: #ffffff;
}

header {
  background-color: var(--navy);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.logo-highlight {
  color: var(--coral);
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--light-bg);
  border-left: 4px solid var(--coral);
  border-radius: 4px;
}

section {
  margin-bottom: 2.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  margin: 3rem 0;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, #2d5078 100%);
  border-radius: 12px;
}

.cta-button {
  display: inline-block;
  background-color: var(--coral);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
  background-color: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.highlight-box {
  background-color: var(--light-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

footer {
  background-color: var(--navy);
  color: white;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--coral);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  main {
    padding: 2rem 1rem;
  }
  
  .header-content {
    padding: 0 1rem;
  }
  
  .cta-section {
    padding: 2rem 1rem;
  }
}
