body {
  background-color: #fffdf9;
  color: #1c1c1c;
  font-family: 'Goudy Bookletter 1911', serif;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
}

h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.intro {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

h2 {
  font-size: 1.6rem;
  margin-top: 30px;
  border-top: 2px solid #000;
  padding-top: 10px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

p {
  margin-bottom: 10px;
}

.with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}


strong {
  font-weight: bold;
}

.client-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.client-icons img {
  height: 40px;              /* Set consistent height */
  width: auto;               /* Maintain aspect ratio */
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.client-icons img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.contact {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.contact h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact a {
  color: #0066cc;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

#lissajousCanvas {
  position: fixed;
  top: 0;
  right: 50px;
  width: 200px;
  height: 100vh;
  z-index: -1; /* Behind the content */
  pointer-events: none; /* Allows clicking through it */
  opacity: 0.1; /* Subtle background */
}


