/* Base and Header Styles */
body {
  margin: 0;
  font-family: sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f5f5;
}

header {
  background: #e9ddc9;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.container {
  margin-left: 20px; /* pushes each container 10px away from left */
}



.logo img {
  height: 60px; /* increase size here as needed */
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #333;
  text-decoration: none;
}

/* Hero (if used elsewhere) */
.hero {
  background: url('hero.png') left/cover no-repeat;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  text-align: center;
}

/* Services (for consistency with other pages) */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service {
  background: #f5f1eb;
  padding: 1rem;
  border-radius: 4px;
}

.agent-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.agent {
  flex: 1 1 200px;
  text-align: left;
}

.agent2 {
  flex: 1 1 200px;
  text-align: right;
  gap: 75px;
}

.agent img {
  width: 100%;
  max-width: 200px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

/* Legal Page Styles */
.legal-paper {
  background: white;
  padding: 3rem;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin: 3rem auto;
  max-width: 800px;
  font-family: Georgia, serif;
}

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

.legal-paper h2 {
  font-size: 1.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3rem;
  margin-top: 2rem;
}

.legal-paper p {
  margin: 1rem 0;
  line-height: 1.7;
  font-size: 1rem;
  color: #333;
}

.legal-paper .last-updated {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin-top: 3rem;
}

footer {
  background: #ddd1c0;
  color: #333;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
  width: 100%;
  box-sizing: border-box;
}

footer .nav-links {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

footer .nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

html, body {
  margin: 0;
  padding: 0;
}
