body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f7fa;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 5em auto;
  padding: 2em;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

h1 {
  color: #1a1a1a;
  font-size: 2.4em;
  margin-bottom: 0.5em;
}

h2 {
  color: #1a1a1a;
  font-size: 1.6em;
  margin-top: 2em;
}

ul {
  text-align: left;
  padding-left: 1.2em;
  line-height: 1.6;
}

p {
  line-height: 1.6;
  margin: 1em 0;
}

em {
  color: #666;
}

/* --- Simple Carousel --- */
.carousel {
  position: relative;
  margin: 2rem auto;
  max-width: 900px;       /* scales down on small screens */
  width: 100%;
  user-select: none;
}
.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  background: #f7f7f7;
}
.slide { margin: 0; }
.slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.slide figcaption {
  font-size: .95rem;
  padding: .6rem .9rem;
  background: #f7f7f7;
  border-top: 1px solid #eee;
}
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255,255,255,.95);
  width: 40px; height: 40px;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.nav:focus { outline: 2px solid #4c9ffe; }
.prev { left: .5rem; }
.next { right: .5rem; }

.dots {
  display: flex; gap: .5rem;
  justify-content: center;
  padding: .8rem 0 0;
}
.dots button {
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 0;
  background: #c9c9c9;
  cursor: pointer;
}
.dots button[aria-selected="true"] { background: #333; }

.logo-tight {
  letter-spacing: -0.1em;          /* try between -0.02em and -0.06em */
  font-kerning: normal;              /* use font kerning pairs */
  text-rendering: optimizeLegibility;/* hint to enable kerning/ligatures */
}

@media (min-width: 960px) {
  .logo-tight { letter-spacing: -0.1em; }
}
