* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f7f3;
    color: #333;
    line-height: 1.6;
}

.holy-grail-grid {
    min-height: 100vh;
    display: grid;
    grid-template-areas:
        "header"
        "main-content"
        "left-sidebar"
        "right-sidebar"
        "footer";
}

.holy-grail-grid > * {
    padding: 1rem;
}

.header {
    grid-area: header;
    background: #2c6e49;
    color: white;
    text-align: center;
    border-bottom: 5px solid #ffb703;
}

.header h1 {
    margin: 0;
    font-size: 2.4rem;
}

.header p {
    margin: 0.4rem 0 0;
}

.left-sidebar {
    grid-area: left-sidebar;
    background: #fff8e7;
}

.main-content {
    grid-area: main-content;
    background: white;
}

.right-sidebar {
    grid-area: right-sidebar;
    background: #f3f7fa;
}

.footer {
    grid-area: footer;
    background: #2c6e49;
    color: white;
    text-align: center;
}

h2 {
    margin-top: 0;
    color: #2c6e49;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: #2c6e49;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.status-list li::before {
    content: "★ ";
    color: #ffb703;
    font-weight: bold;
}

.small-text {
    font-size: 0.9rem;
    color: #666;
}

@media (min-width: 900px) {
    .holy-grail-grid {
        grid-template-columns: 220px 1fr 250px;
        grid-template-areas:
            "header header header"
            "left-sidebar main-content right-sidebar"
            "footer footer footer";
    }
}