/* Base Styles - Reset and Typography */

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-foreground);
  background: var(--color-background);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: var(--font-size-5xl);
  margin-bottom: 10px;
}

h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-size: var(--font-size-xl);
  margin: 25px 0 15px 0;
  font-weight: 600;
}

p {
  margin: 16px 0;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

/* Lists */
ul {
  list-style: none;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-2xl);
  }
}
