.grid {
  display: grid;
  gap: 4rem;
  padding: 1rem;

  /* Automatically makes multiple columns when there's space,
     and stacks them when the screen gets too small */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ================================
   Global Theme Colors
================================ */
:root {
    --green-main: #00A862;
    --green-dark: #00804F;
    --green-soft: #D7F5E9;

    --bg-light: #F7F7F7;
    --bg-white: #FFFFFF;

    --text-dark: #222222;
    --border-grey: #E0E0E0;
}

/* ================================
   Global Reset + Typography
================================ */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h2 {
    color: var(--green-main);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 0;
}

/* Make all h2 the exact same size */
h2 {
    font-size: 1.6rem;
    text-transform: uppercase;
}

/* ================================
   Box Component
================================ */
.box {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid var(--green-main);
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover “lift” effect */
.box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.10);
}

/* ================================
   Links (Highly Clickable)
================================ */
a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 4px 0;
    display: inline-block;
    transition: color 0.2s ease, transform 0.1s ease;
}

a:hover {
    color: var(--green-main);
    transform: translateX(3px);
    text-decoration: underline;
}

/* ================================
   Lists
================================ */
ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* Optional: nicer list bullets */
li::marker {
    color: var(--green-main);
}

/* ================================
   Optional Buttons (CTA)
================================ */
.btn {
    background: var(--green-main);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    background: #f7f7f7;      /* optional: light background */
    color: #222;              /* text color */
    font-size: 0.95rem;
}

.intro {
padding-left: 20px;
}

h1 {
    text-align: center;
}