/* Base layout */
body {
  font-family: 'Inter', 'Noto Sans', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.75;
  margin: 0;
  padding: 0 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Headings */
h1, h2, h3 {
  font-family: 'Google Sans', sans-serif;
  color: #222;
  line-height: 1.3;
  margin-top: 2rem;
}

h2 {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.4em;
  font-size: 1.6rem;
}

h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #004c99;
  text-decoration: underline;
}

/* Code blocks */
code, pre {
  background-color: #f6f8fa;
  border-radius: 6px;
  font-family: 'Fira Code', monospace;
  font-size: 0.95em;
}

pre {
  overflow-x: auto;
  padding: 1rem;
  margin: 1.5rem 0;
  box-shadow: inset 0 0 0 1px #e0e0e0;
}

/* Tables */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  background: #fff;
  box-shadow: 0 0 0 1px #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
}

th, td {
  padding: 1em;
  border-bottom: 1px solid #eee;
  text-align: center;
}

th {
  background: #f8f8f8;
  font-weight: 600;
}

tr:last-child td {
  border-bottom: none;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.015);
}

/* Lists */
ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Blockquotes */
blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #ddd;
  padding-left: 1rem;
  margin: 2rem 0;
  background-color: #fafafa;
  border-radius: 6px;
}

/* Horizontal Rule */
hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 3rem 0;
}

/* Footer Logos */
.logo-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding: 0 5%;
  gap: 1rem;
}

.logo-bar img {
  height: 50px;
  max-width: 30%;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-bar img:hover {
  transform: scale(1.05);
  opacity: 1;
}


  .button-purple {
    display: inline-block;
    background-color: #7c3aed;
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    min-width: 130px;
    text-align: center;
    transition: background-color 0.2s ease;
  }

  .button-purple:hover {
    background-color: #6d28d9;
    color: white;
  }

  td a.button-purple {
    width: 100%;
    box-sizing: border-box;
  }