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

/* PAGE BASE */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #faf9f7;
  color: #2e3440;
  line-height: 1.6;
   min-height: 100vh;
}

/* LAYOUT */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* HEADER */
h1 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

/* TWO COLUMN LAYOUT */
.layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* MODULE LIST */
.module-list {
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

.module-list li {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.module-list a {
  text-decoration: none;
  color: #2e3440;
  font-weight: 600;
  font-size: 1.1rem;
}

/* IMAGE COLUMN */
.side-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

/* FOOTER */
.footer-note {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
}


