.content-wrapper {
    display: flex;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-box {
    flex: 1;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0;
    overflow: hidden;
}

.section-header {
    background: #009933;
    color: white;
    padding: 15px 20px;
    margin: 0;
    cursor: pointer;
    text-decoration: none;
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
}

.section-header:hover {
    background: #009933;
}

.content-list {
    padding: 15px;
}

.item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.item:last-child {
    border-bottom: none;
}

.item a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.item a:hover {
    color: #009933;
}

.view-all {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin: 15px;
    float: right;
}

.view-all:hover {
    background: #b91c1c;
}