body {
  margin: 0;
  font-family: "Segoe UI", Roboto, sans-serif;
  background-color: #ffffff;
  color: #2f2f91;
  text-align: center;
  line-height: 1.6;
}

header {
  padding: 3rem 1rem 1rem;
}



.logo {
  max-width: 320px;
  margin-bottom: -25px;
}

h2 {
  font-size: 1.3rem;
  color: #8cc63f;
  font-weight: 500;
  margin-bottom: 1rem;
}

em {
	font-style: italic;
	font-weight: bold;
}


section {
  max-width: 800px;
  margin: -50px auto;
  padding: 1.5rem;
  text-align: left;
}

section h3 {
  color: #2f2f91;
  font-size: 1.4rem;
  margin-top: 1.5rem;
}

ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

footer {
  background: #111;
  color: #eee;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

footer a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

/* ================================
   Green bars with clustered slashes
   ================================ */
/* Green bars */

.border-top,
.border-bottom {
  position: relative;
  height: 40px;
  background: #8cc63f; /* green */
  overflow: hidden;
  border-top: 4px solid #111;   /* add dark top border */
  border-bottom: 4px solid #111;/* add dark bottom border */
}

/* White slash cluster SVG */
.border-top::after,
.border-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  background: no-repeat center / contain url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' viewBox='10 0 120 35'>\
      <polygon points='80,0 92,0 120,40 108,40' fill='white'/>\
      <polygon points='60,0 72,0 100,40 88,40' fill='white'/>\
      <polygon points='40,0 52,0 80,40 68,40' fill='white'/>\
    </svg>");
}

/* Top stripe: cluster on right, normal slant (NW→SE) */
.border-top::after {
  right: 0;
  transform: none;
}

/* Bottom stripe: cluster on right, flipped slant (SW→NE) */
.border-bottom::after {
  right: 0;
  transform: scaleY(-1);
}
