@import url("https://fonts.googleapis.com/css2?family=PT+Mono&family=PT+Sans:wght@400;700&display=swap");

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font: 16px/1.3 "PT Sans", sans-serif;
  background: #f7f5f0;
  color: #333;
}

a {
  color: #91a18b;
  text-decoration: none;
  font-weight: bold;
}

/* Utility classes (Tailwind-like) */
.hidden {
  display: none;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
.space-y-3 > * + * {
  margin-top: 0.75rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-8 {
  gap: 2rem;
}
.p-6 {
  padding: 1.5rem;
}
.pl-4 {
    padding-left: 1rem;
}
.pl-6 {
    padding-left: 1.5rem;
}
.pl-8 {
    padding-left: 2rem;
}
.pl-10 {
    padding-left: 2.5rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.mt-0 {
  margin-top: 0;
}
.mt-12 {
  margin-top: 3rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.w-full {
  width: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.max-w-6xl {
  max-width: 72rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.border {
  border: 1px solid #e2e8f0;
}
.text-center {
  text-align: center;
}
.text-sm {
  font-size: 0.875rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.text-primary {
  color: #2563eb;
}
.text-muted-foreground {
  color: #64748b;
}
.hover\:underline:hover {
  text-decoration: underline;
}
.inline-flex {
  display: inline-flex;
}
.inline-block {
  display: inline-block;
}
.items-center {
  align-items: center;
}
.text-pretty {
  text-wrap: pretty;
}
.text-balance {
  text-wrap: balance;
}
.shrink-0 {
  flex-shrink: 0;
}

/* Grid layout */
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* SVG styles */
.h-3 {
  height: 0.75rem;
}
.w-3 {
  width: 0.75rem;
}
.h-4 {
  height: 1rem;
}
.w-4 {
  width: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.w-5 {
  width: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.w-6 {
  width: 1.5rem;
}

.page-links {
  margin-top: -35px;
  padding-bottom: 30px;
}

/* Responsive styles */
@media (min-width: 768px) {
  .md\:p-12 {
    padding: 3rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .lg\:p-16 {
    padding: 4rem;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .lg\:text-5xl {
    font-size: 3rem;
  }
  .lg\:block {
    display: block;
  }
  .lg\:mt-6 {
    margin-top: 1.5rem;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:text-transparent {
    color: transparent;
  }
  .lg\:mb-0 {
    margin-bottom: 0;
  }
  .page-links {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media all and (max-width: 1023px) {
  .left-column {
    order: 1;
  }
}

.nav {
  position: sticky;
  top: 0;
  align-self: flex-start;
}