body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #191c1d;
  line-height: 1.6;
  background-color: #fafdfd;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

header {
  background-color: #ffffff;
  color: #191c1d;
  padding: 16px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

header h1 a {
  color: #1c7430;
  text-decoration: none;
}

.header-icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  vertical-align: middle;
}

nav {
  display: flex;
  gap: 16px;
}

nav a {
  color: #1c7430;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.2s;
}

nav a:hover {
  background-color: rgba(28, 116, 48, 0.1);
}

nav a.active {
  background-color: #1c7430;
  color: #ffffff;
}

.nav-button {
  display: inline-block;
  background-color: rgba(28, 116, 48, 0.1);
  transition: background-color 0.2s;
}

.nav-button.active {
  background-color: #1c7430;
  color: #ffffff;
}

.content {
  padding: 48px 0;
  margin-top: 16px;
}

.content > .container {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
  padding: 32px;
}

h2 {
  color: #1c7430; /* Changed from blue to green to match map/list view */
  font-size: 28px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 24px;
  padding-bottom: 16px;
}

hr {
  border: 0;
  height: 1px;
  background-color: #bfc8ca;
  margin-bottom: 24px;
}

p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #191c1d;
}

/* Adding styles for links to match the green theme */
.content a {
  color: #1c7430;
  text-decoration: none;
  transition: color 0.2s;
}

.content a:hover {
  color: #165c28;
  text-decoration: underline;
}

/* Map redirect section styles */
.map-redirect-section {
  background: linear-gradient(135deg, #1c7430, #2a8f42);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 8px rgba(28, 116, 48, 0.2);
}

.map-redirect-section h2 {
  color: #ffffff;
  margin: 0 0 12px 0;
  padding-bottom: 0;
  font-size: 24px;
  font-weight: 500;
}

.map-redirect-section p {
  color: #ffffff;
  margin: 0 0 20px 0;
  font-size: 16px;
  opacity: 0.95;
}

.map-button {
  display: inline-block;
  background-color: #ffffff;
  color: #1c7430;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-button:hover {
  background-color: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: #165c28;
  text-decoration: none;
}

footer {
  background-color: #dbe4e6;
  padding: 24px 0;
  text-align: center;
  color: #3f484a;
  font-size: 12px;
  font-weight: 400;
  margin-top: 48px;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  nav {
    width: 100%;
    justify-content: center;
  }
  
  .content > .container {
    padding: 24px 16px;
  }
}
