/* Base layout: full height */
html, body {
  height: 100%;
  margin: 0;
  font-family: sans-serif;
  background: #ffffff;
  color: #333;
}

/* Container: center full site + full height */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

/* Header */
header {
  background: #333;
  color: rgb(255, 255, 255);
  padding: 1rem;
  text-align: center;
}

/* Hero section */
.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
  background: #e0e0e0;
}

.hero .graphic {
  flex: 1;
  min-width: 200px;
}

.hero .title {
  flex: 2;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  text-align: center;
}

/* Main grows to fill vertical space */
main {
  flex: 1;
  display: flex;
  align-items: stretch; /* stretch children */
  justify-content: center;
}

.content {
  width: 100%;
  background: white;
  padding: 1rem;
  margin: 0.5rem 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);

  /* 🔥 New line to make it fill height */
display: block; /* default block flow */
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
}
