body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            background-color: #f4f4f4;
            color: #333;
						text-align: center;
        }
        footer {
            margin-top: 30px;
            padding: 10px 0;
            background: #9B9B9B;
            color: #ffffff;
        }
        footer a {
            color: #ffffff;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        h1 {
				}
        html, body {
						  margin: 0;
							padding: 0;
							width: 100vw;
							overflow-x: hidden;
							max-width: 100%;
				}
        header {
            background-color: #2c8f46;
            padding: 0.1em 0 0.1em 0; 
            color: #ffffff;
						box-sizing: border-box;
        }
        header h1 {
          text-align: center;
          vertical-align: middle;
          font-size: 9vmin;
        }
        header h1 img {
					  width: 1em; height: 1em;
						}
				main {
				}   
        nav {
            
            text-align: center;
						margin-top: 30px;
						margin-bottom: 30px;
        }
        nav a {
            margin: 0 15px;
            text-decoration: none;
            color: #169636;
            font-weight: bold;
        }
        nav a:hover {
            text-decoration: underline;
        }
        .content {
            max-width: 800px;
            margin: 10px auto;
            background: #f8f8f6;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }
        nav button {
						background-color: #36b46a; /* soft green, matches logo vibe */
						border: 1px solid #b4d3c5;
						color: #ffffff;
						font-size: 16px;
						padding: 8px 16px;
						margin: 4px;
						border-radius: 6px;
						cursor: pointer;
						transition: background-color 0.2s ease, transform 0.1s ease;
				}
				nav button:hover {
						background-color: #38a75a;
						transform: scale(1.03);
						color: #ffffff;
						box-shadow: 0 2px 8px rgba(92, 42, 157, 0.15);
				}
				nav button:active {
						transform: scale(0.98);
						background-color: #5c2a9d15;
						color: #36b46a;
						border: 2px solid #b4d3c5;
						font-weight: bold;
				}
				nav button.active {
						background-color: #26a656;
						color: #f3f3f3;
						border: 2px solid #36b46a;
						font-weight: bold;
				}
				th, td {
						border: 1px solid #ccc;
						padding: 8px 12px;
						text-align: left;
				}
				th {
						background-color: #f5f5f5;
						font-weight: bold;
				}
				table { 
						width:100%;
						border-collapse: collapse;
						margin-top: 1em;
				}
				.hidden {
     visibility: hidden;
    position: absolute;
    left: -9999px;
}


a.vcard-link {
    color: #36b46a;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px dashed #36b46a;
}

a.vcard-link:hover {
    color: #2e944f;
    border-bottom: 1px solid #2e944f;
}


.page {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    display: none;
    position: absolute;
    width: 100vw;
    left: 0;
}

.page.active {
    opacity: 1;
    display: block;
    visibility: visible;
    position: relative;
}

#privacy-modal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

#privacy-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Contact section layout */
.contact-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 0 0 auto;
  text-align: center;
}

.contact-chat {
  flex: 1;
  min-width: 300px;
  min-height: 400px;
  position: relative;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  nav button {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-chat {
    width: 100%;
    min-height: 500px;
  }
}